1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 06:50:46 -08:00
emacs/mps/code/osxc.h
Richard Brooksby c0bb4cd3cd Removing hopenames from the master sources.
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames.

Copied from Perforce
 Change: 24911
 ServerID: perforce.ravenbrook.com
2001-12-07 13:19:25 +00:00

27 lines
641 B
C

/* impl.h.osxc: MacOS X (Carbon-compatible) system header hacks
*
* $Id$
* Copyright (c) 2001 Ravenbrook Limited.
*
* .purpose: This header fixes bugs in the system headers.
*/
#ifndef osxc_h
#define osxc_h
#ifdef MPS_BUILD_GC
/* __inline__ is supposed to do nothing in gcc -ansi, but there's a bug in */
/* DP3, that causes it to signal error (for __sputc in stdio.h). */
#define __inline__
#endif
/* cabs doesn't have a proper prototype; taken from glibc 2.0.6 manual. */
/* Define a structure tag to avoid warnings. */
struct mps_complex { double real, imag; };
extern double cabs(struct mps_complex z);
#endif /* osxc_h */