22 lines
279 B
C
22 lines
279 B
C
/*
|
|
Provisional arrangement for determining the system on which
|
|
the program is being translated.
|
|
*/
|
|
|
|
/* $Id$ */
|
|
|
|
#include <local.h>
|
|
|
|
#ifdef BSD4_1
|
|
#define BSD_X
|
|
#endif /* BSD4_1 */
|
|
|
|
#ifdef BSD4_2
|
|
#define BSD_X
|
|
#endif /* BSD4_2 */
|
|
|
|
#ifdef SYS_5
|
|
#define SYS_V
|
|
#endif /* SYS_5 */
|
|
|