15 lines
224 B
C
15 lines
224 B
C
#ifdef MSDOS
|
|
#include <stdlib.h>
|
|
#include <io.h>
|
|
#endif /* MSDOS */
|
|
|
|
#ifdef USG
|
|
#include <string.h>
|
|
#else /* not USG */
|
|
#ifdef MSDOS
|
|
#include <string.h>
|
|
#else
|
|
#include <strings.h>
|
|
#endif /* not MSDOS */
|
|
#endif /* not USG */
|