aboutsummaryrefslogtreecommitdiff
path: root/libs/libc/errno.c
blob: 06d2b337165a8659d90a68a9792be103b4864b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// MIT License, Copyright (c) 2021 Marvin Borner

#include <def.h>
#include <errno.h>
#ifdef USER

static u32 error = 0;

u32 *__errno(void)
{
	return &error;
}

#endif