added ifdef for sunos 4.x since it does not have strtoul.

This commit is contained in:
Joel Sherrill
1996-06-03 15:47:45 +00:00
parent 5e7b6272fc
commit 52a06419cc
4 changed files with 24 additions and 8 deletions

View File

@@ -88,8 +88,12 @@ void error(int errn, ...);
#define ERR_ABORT (ERR_ERRNO / 4) /* error is fatal; abort */
#define ERR_MASK (ERR_ERRNO | ERR_FATAL | ERR_ABORT) /* all */
#define stol(p) strtoul(p, (char **) NULL, 0)
#if (defined(sparc) && (sunos < 500))
#define stol(p) strtol(p, (char **) NULL, 0) /* Sunos */
#else
#define stol(p) strtoul(p, (char **) NULL, 0) /* Solaris */
#endif
int unhex(FILE *ifp, char *inm, FILE *ofp, char *onm);
int convert_Intel_records(FILE *ifp, char *inm, FILE *ofp, char *onm);
int convert_S_records(FILE *ifp, char *inm, FILE *ofp, char *onm);