Ignore:
Timestamp:
Jan 11, 2004, 6:41:29 PM (22 years ago)
Author:
bird
Message:

Initial porting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/src/lib/bsd/stdlib/imaxabs.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r950 r951  
    2525 */
    2626
     27
    2728#include <sys/cdefs.h>
    2829__FBSDID("$FreeBSD: src/lib/libc/stdlib/imaxabs.c,v 1.1 2001/11/15 02:05:03 mike Exp $");
     
    3132
    3233intmax_t
    33 imaxabs(intmax_t j)
     34(intmax_t j)
    3435{
    3536        return (j < 0 ? -j : j);
Note: See TracChangeset for help on using the changeset viewer.