- replaced prototype for basename() by #include <libgen.h>

- include <linux/limits.h> only if __linux__ is defined, try
  <limits.h> otherwise
This commit is contained in:
Tobias Becker 2007-01-05 03:45:50 +00:00
parent b6bdad8c2d
commit 542e8a2eb6
2 changed files with 17 additions and 2 deletions

View File

@ -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 <linux/limits.h>
#else
#include <limits.h>
#endif
#include "policy.h"
#include "conffile.h"
@ -86,7 +94,7 @@
/****************************************************************************/
extern char *basename __P((__const char *__name));
#include <libgen.h>
/****************************************************************************/

View File

@ -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 <linux/limits.h>
#else
#include <limits.h>
#endif
/****************************************************************************/
extern char *basename __P((__const char *__name));
#include <libgen.h>
/****************************************************************************/