Add define protection for config.h, so it can be included multiple times

without redefining everything.
This commit is contained in:
Jeff Teunissen 2000-05-18 08:19:24 +00:00
parent 9d4adec3d5
commit eb88865ff1
1 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
/*
Compiler/Machine-Specific Configuration
*/
#ifndef _CONFIG_H
#define _CONFIG_H
@TOP@
/* "Proper" package name */
#undef PROGRAM
@ -78,3 +84,6 @@
/* Define if you have the dlopen function. */
#undef HAVE_DLOPEN
@BOTTOM@
#endif // _CONFIG_H