uKernel/include/errno.h

20 lines
293 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 ENOTSUP 2
/* variables */
extern int errno;
#endif /* !UKERNEL_ERRNO_H */