File: co_extern.h

package info (click to toggle)
fsp 2.71-8hamm10
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 988 kB
  • ctags: 1,287
  • sloc: ansic: 7,715; makefile: 363; sh: 118
file content (22 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _FSP_CO_EXTERN_H_
#define _FSP_CO_EXTERN_H_

#ifdef NEED_STRDUP
/* strdup.c */
extern char *strdup PROTO0((char *));
#endif

#ifdef NEED_RANDOM
/* random.c */
extern void srandom PROTO0((unsigned int));
extern char * initstate PROTO0((unsigned int, char *, int));
extern char *setstate PROTO0((char *));
extern long random PROTO0((void));
#endif

/* udp_io.c */
extern int _x_udp PROTO0((int *));
extern int _x_adr PROTO0((char *, int, struct sockaddr_in *));
extern int _x_select PROTO0((unsigned int *, long));

#endif /* _FSP_CO_EXTERN_H_ */