diff --git a/lib/libisdn.h b/lib/libisdn.h index 2c8ab705..5b9b7f64 100644 --- a/lib/libisdn.h +++ b/lib/libisdn.h @@ -20,6 +20,10 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Log$ + * Revision 1.14 2002/01/31 20:03:59 paul + * Add "#define CCODE_OTHER 9999" for defining behaviour in + * non-specified countries. + * * Revision 1.13 2000/09/05 08:05:03 paul * Now isdnlog doesn't use any more ISDN_XX defines to determine the way it works. * It now uses the value of "COUNTRYCODE = 999" to determine the country, and sets @@ -74,7 +78,11 @@ #ifndef _LIB_H_ #define _LIB_H_ +#ifdef __linux__ #include +#else +#include +#endif #include "policy.h" #include "conffile.h" @@ -86,7 +94,7 @@ /****************************************************************************/ -extern char *basename __P((__const char *__name)); +#include /****************************************************************************/ diff --git a/lib/libtools.h b/lib/libtools.h index d5b594f8..6b2869ae 100644 --- a/lib/libtools.h +++ b/lib/libtools.h @@ -19,6 +19,9 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * * $Log$ + * Revision 1.8 1998/10/13 22:17:25 luethje + * isdnlog: evaluate the variable PATH for program starts. + * * Revision 1.7 1998/10/13 21:53:37 luethje * isdnrep and lib: bugfixes * @@ -41,11 +44,15 @@ #ifndef _LIB_TOOLS_H_ #define _LIB_TOOLS_H_ +#ifdef __linux__ #include +#else +#include +#endif /****************************************************************************/ -extern char *basename __P((__const char *__name)); +#include /****************************************************************************/