21 lines
312 B
C
21 lines
312 B
C
/* $Id$ */
|
|
/* Copyright (c) 2008 Pierre Pronchery <khorben@defora.org> */
|
|
/* This file is part of DeforaOS uKernel */
|
|
|
|
|
|
|
|
#ifndef UKERNEL_ERRNO_H
|
|
# define UKERNEL_ERRNO_H
|
|
|
|
|
|
/* constants */
|
|
# define EINVAL 1
|
|
# define ENODEV 2
|
|
# define ENOTSUP 3
|
|
|
|
|
|
/* variables */
|
|
extern int errno;
|
|
|
|
#endif /* !UKERNEL_ERRNO_H */
|