/* $Id$ */ /* Copyright (c) 2008 Pierre Pronchery */ /* 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 */