You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
250 B
C
19 lines
250 B
C
13 years ago
|
#ifndef CONFIG_H
|
||
|
#define CONFIG_H
|
||
|
|
||
|
@TOP@
|
||
|
|
||
|
/* VERSION (from configure.in) */
|
||
|
#undef VERSION
|
||
|
|
||
|
|
||
|
@BOTTOM@
|
||
|
|
||
|
/* some OSes do not define this ... lets take a wild guess */
|
||
|
|
||
|
#ifndef INADDR_NONE
|
||
|
# define INADDR_NONE 0xffffffffU
|
||
|
#endif
|
||
|
|
||
|
#endif /* CONFIG_H */
|