/ fabs.s (emx+gcc) -- Copyright (c) 1991-1993 by Eberhard Mattes

#include <libm.h>

        .globl  FUN(fabs)

        .text

        .align  2, 0x90

/ double fabs (double x)

#define x       4(%esp)

DEF(fabs)
        FLD     x                       / x
        fabs
        ret
