1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-18 08:51:45 -08:00

Fix for strtoul in sunos

Copied from Perforce
 Change: 19266
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Gavin Matthews 1998-01-22 16:33:15 +00:00
parent 238040a0aa
commit 08b93c8312

View file

@ -1,6 +1,6 @@
/* ==== SUNOS ANSI COMPATABILITY HEADER ====
*
* $HopeName: MMsrc!ossu.h(trunk.7) $
* $HopeName: MMsrc!ossu.h(trunk.8) $
*
* Copyright (C) 1994,1995,1997 Harlequin Group, all rights reserved
*
@ -76,6 +76,8 @@ extern int system(const char *string);
extern long strtol(const char *, char **, int);
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
/* @@@@ This doesn't do quite the right thing, but will get by */
#define strtoul(a,b,c) (unsigned long)strtol((a), (b), (c))
/* string.h things */