mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
14 lines
262 B
C
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__ */
|