1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-28 07:50:48 -08:00
emacs/mps/qa/test/testlib/platform.h
Richard Tucker b6a5d5ca29 Add hopename
Copied from Perforce
 Change: 19336
 ServerID: perforce.ravenbrook.com
1998-02-23 16:12:09 +00:00

45 lines
707 B
C

/* $HopeName$
platform.h
load appropriate header files to do platform-specific
stuff.
*/
#ifdef MPS_OS_SU
/* SunOS (4) doesn't have memmove, which would be handy for
writing copy functions in formats. So...
*/
/* (I copied ossu.h from the mps header files for
thursday afternoon)
*/
#include "ossu.h"
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
#define CLOCKS_PER_SEC 1000000
int scanf(const char *format, ...);
void bcopy(char* from, char* to, int bytes);
void *memmove(void *to, void *from, size_t bytes);
#endif
#ifdef MPS_OS_W3
#ifdef MMQA_VERS_BQ
/* in interface version BQ, we are required to include mpsw3.h on
windows platforms
*/
#include "mpsw3.h"
#endif
#endif