- Timestamp:
- Jan 11, 2004, 6:41:29 PM (22 years ago)
- Location:
- trunk/src/emx/src/lib/bsd/stdlib
- Files:
- 
      - 4 edited
 
 - 
          
  imaxabs.c (modified) (2 diffs, 1 prop)
- 
          
  imaxdiv.c (modified) (2 diffs, 1 prop)
- 
          
  strtoimax.c (modified) (2 diffs, 1 prop)
- 
          
  strtoumax.c (modified) (2 diffs, 1 prop)
 
Legend:
- Unmodified
- Added
- Removed
- 
      trunk/src/emx/src/lib/bsd/stdlib/imaxabs.c- 
Property       cvs2svn:cvs-rev
 changed from       1.1to1.2
 r950 r951 25 25 */ 26 26 27 #include "namespace.h" /*bird*/ 27 28 #include <sys/cdefs.h> 28 29 __FBSDID("$FreeBSD: src/lib/libc/stdlib/imaxabs.c,v 1.1 2001/11/15 02:05:03 mike Exp $"); … … 31 32 32 33 intmax_t 33 imaxabs(intmax_t j)34 _STD(imaxabs)(intmax_t j) 34 35 { 35 36 return (j < 0 ? -j : j); 
- 
Property       cvs2svn:cvs-rev
 changed from       
- 
      trunk/src/emx/src/lib/bsd/stdlib/imaxdiv.c- 
Property       cvs2svn:cvs-rev
 changed from       1.1to1.2
 r950 r951 25 25 */ 26 26 27 #include "namespace.h" /*bird*/ 27 28 #include <sys/cdefs.h> 28 29 __FBSDID("$FreeBSD: src/lib/libc/stdlib/imaxdiv.c,v 1.1 2001/11/15 02:05:03 mike Exp $"); … … 32 33 /* See comments in div.c for implementation details. */ 33 34 imaxdiv_t 34 imaxdiv(intmax_t numer, intmax_t denom)35 _STD(imaxdiv)(intmax_t numer, intmax_t denom) 35 36 { 36 37 imaxdiv_t retval; 
- 
Property       cvs2svn:cvs-rev
 changed from       
- 
      trunk/src/emx/src/lib/bsd/stdlib/strtoimax.c- 
Property       cvs2svn:cvs-rev
 changed from       1.1to1.2
 r950 r951 35 35 static char sccsid[] = "from @(#)strtol.c 8.1 (Berkeley) 6/4/93"; 36 36 #endif /* LIBC_SCCS and not lint */ 37 #include "namespace.h" /*bird*/ 37 38 #include <sys/cdefs.h> 38 39 __FBSDID("$FreeBSD: src/lib/libc/stdlib/strtoimax.c,v 1.9 2003/01/01 18:48:43 schweikh Exp $"); … … 50 51 */ 51 52 intmax_t 52 strtoimax(const char * __restrict nptr, char ** __restrict endptr, int base)53 _STD(strtoimax)(const char * __restrict nptr, char ** __restrict endptr, int base) 53 54 { 54 55 const char *s; 
- 
Property       cvs2svn:cvs-rev
 changed from       
- 
      trunk/src/emx/src/lib/bsd/stdlib/strtoumax.c- 
Property       cvs2svn:cvs-rev
 changed from       1.1to1.2
 r950 r951 35 35 static char sccsid[] = "from @(#)strtoul.c 8.1 (Berkeley) 6/4/93"; 36 36 #endif /* LIBC_SCCS and not lint */ 37 #include "namespace.h" /*bird*/ 37 38 #include <sys/cdefs.h> 38 39 __FBSDID("$FreeBSD: src/lib/libc/stdlib/strtoumax.c,v 1.8 2002/09/06 11:23:59 tjr Exp $"); … … 50 51 */ 51 52 uintmax_t 52 strtoumax(const char * __restrict nptr, char ** __restrict endptr, int base)53 _STD(strtoumax)(const char * __restrict nptr, char ** __restrict endptr, int base) 53 54 { 54 55 const char *s; 
- 
Property       cvs2svn:cvs-rev
 changed from       
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  
