debug buffer slightly usabler.
[minix.git] / servers / inet / const.h
blob4c4e7609d29399bc2fb70fa132b949ac709ea3c6
1 /*
2 inet/const.h
4 Created: Dec 30, 1991 by Philip Homburg
6 Copyright 1995 Philip Homburg
7 */
9 #ifndef INET__CONST_H
10 #define INET__CONST_H
12 #ifndef DEBUG
13 #define DEBUG 0
14 #endif
16 #ifndef NDEBUG
17 #define NDEBUG 0
18 #endif
20 #define CLOCK_GRAN 1 /* in HZ */
22 #define where() printf("%s, %d: ", __FILE__, __LINE__)
24 #define NW_SUSPEND SUSPEND
25 #define NW_WOULDBLOCK EWOULDBLOCK
26 #define NW_OK OK
28 #define BUF_S 512
30 #endif /* INET__CONST_H */
33 * $PchId: const.h,v 1.7 2000/08/12 09:21:44 philip Exp $