mirror of
https://github.com/sheumann/telnetd.git
synced 2024-11-25 20:32:19 +00:00
de9fad8d67
In particular, address a couple instances where GNO's sockets implementation doesn't comply with modern standards. Also, add a few missing prototypes so we can use ORCA/C prototype-checking lint functionality.
10 lines
294 B
C
10 lines
294 B
C
/* We use this as a hack to define stuff in every file, since they all
|
|
* #include <sys/cdefs.h> first. When compiling with occ, this file will
|
|
* be included in preference to the system header of the same name. */
|
|
|
|
#ifdef __GNO__
|
|
# define __unused
|
|
#endif
|
|
|
|
#include "/usr/include/sys/cdefs.h"
|