mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-17 00:30:37 -08:00
30 lines
530 B
C
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
|
|
|