File: alpha_header.h

package info (click to toggle)
fvwm1 1.24r-56
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 2,060 kB
  • ctags: 2,032
  • sloc: ansic: 23,586; sh: 108; makefile: 91
file content (24 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**************************************************************************/
/* 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>
#include <sys/select.h>
#include <string.h>


#if 0
extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);

/* string manipulation */
#ifdef __GNUC__
extern size_t strlen(char *);
#endif
#endif

/* The following already exist on Debian GNU/Linux alpha systems */
/* extern int bzero(char *, int);
   extern int gethostname (char *, int);
*/
/**************************************************************************/