blob: 8bcb688122ab49330406a2399c444d448fca706e (
plain)
1
2
3
4
5
6
7
8
|
/* Machine specific defines for the SCO Unix V.3.2 ODT */
#define scounix
/* Return true if s (a non null string pointer), points to a local variable name. */
#define LOCAL_LABEL(n) ((n)[0] == '.' && (n)[1] == 'L')
/* Compiler does not generate symbol names with a leading underscore. */
#define STRIP_UNDERSCORE 0
|