mirror of
https://github.com/NishiOwO/fvwm1.git
synced 2025-04-21 08:44:39 +00:00
19 lines
514 B
C
19 lines
514 B
C
/**************************************************************************/
|
|
/* If I do ALL this, I can compile OK with -Wall -Wstrict-prototypes on the
|
|
* alpha's */
|
|
#include <sys/types.h>
|
|
#include <sys/time.h>
|
|
|
|
|
|
extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
|
|
|
/* string manipulation */
|
|
#ifdef __GNUC__
|
|
extern size_t strlen(char *);
|
|
#endif
|
|
|
|
extern int bzero(char *, int);
|
|
extern int gethostname (char *, int);
|
|
/**************************************************************************/
|
|
|