Changeset 254b4450 in rtems for c/build-tools/src
- Timestamp:
- 04/01/97 23:07:52 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 9a11e1f
- Parents:
- 467eae4d
- Location:
- c/build-tools/src
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/build-tools/src/unhex.c
r467eae4d r254b4450 89 89 #define ERR_MASK (ERR_ERRNO | ERR_FATAL | ERR_ABORT) /* all */ 90 90 91 #if (defined(sparc) && (sunos < 500))92 #define stol(p) strto l(p, (char **) NULL, 0) /* Sunos */91 #ifdef HAVE_STRTOUL 92 #define stol(p) strtoul(p, (char **) NULL, 0) 93 93 #else 94 #define stol(p) strto ul(p, (char **) NULL, 0) /* Solaris */94 #define stol(p) strtol(p, (char **) NULL, 0) 95 95 #endif 96 96
Note: See TracChangeset
for help on using the changeset viewer.