mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
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
27 lines
641 B
C
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 */
|