Files
codezero/conts/posix/libposix/include/libposix.h
Bahadir Balban f0bb0a4657 Added posix code
2009-09-29 21:55:59 +03:00

14 lines
262 B
C

#ifndef __LIBPOSIX_H__
#define __LIBPOSIX_H__
/* Abort debugging conditions */
// #define LIBPOSIX_ERROR_MESSAGES
#if defined (LIBPOSIX_ERROR_MESSAGES)
#define print_err(...) printf(__VA_ARGS__)
#else
#define print_err(...)
#endif
#endif /* __LIBPOSIX_H__ */