Skip to content
Snippets Groups Projects
Commit a87200ca authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

STRTOL() now looks at HAVE_WORKING_STRTOL.

Rev: src/port.h:1.19
parent 9f0b09e9
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
\*/
/*
* $Id: port.h,v 1.18 1998/03/28 15:03:11 grubba Exp $
* $Id: port.h,v 1.19 1998/05/29 20:40:33 grubba Exp $
*/
#ifndef PORT_H
#define PORT_H
......@@ -38,10 +38,10 @@ time_t TIME(time_t *);
# define TIME time
#endif
#ifndef HAVE_STRTOL
long STRTOL(char *str,char **ptr,int base);
#else
#if defined(HAVE_STRTOL) && defined(HAVE_WORKING_STRTOL)
# define STRTOL strtol
#else
long STRTOL(char *str,char **ptr,int base);
#endif
#ifndef HAVE_STRTOD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment