1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 00:30:37 -08:00
emacs/mps/qa/test/testlib/platform.h
Richard Tucker 0f52ec25fc New unit
test system hatched

Copied from Perforce
 Change: 18174
 ServerID: perforce.ravenbrook.com
1997-05-15 15:53:53 +01:00

30 lines
530 B
C

/* 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