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:
parent
238040a0aa
commit
08b93c8312
1 changed files with 3 additions and 1 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue