Changeset 951 for trunk/src/emx/src/lib/bsd/stdlib/imaxabs.c
- Timestamp:
- Jan 11, 2004, 6:41:29 PM (22 years ago)
- File:
-
- 1 edited
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 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 (intmax_t j) 34 35 { 35 36 return (j < 0 ? -j : j); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
