diff options
author | Bruce Momjian | 1996-11-04 04:00:56 +0000 |
---|---|---|
committer | Bruce Momjian | 1996-11-04 04:00:56 +0000 |
commit | 7e42f4814d4914cb2be1cbe042cce547109dd6ce (patch) | |
tree | bb11e0ddfcc20bbb863741d73e6c3142b35efdea /src/include/c.h | |
parent | 510ebf75a189db52bfaac0a74b078fa58611ed03 (diff) |
Removed PORTNAME_. Use OS version only.
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index 3433eaf793f..f505f392a4b 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.1 1996/10/31 07:10:12 scrappy Exp $ + * $Id: c.h,v 1.2 1996/11/04 04:00:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -737,11 +737,11 @@ extern char *form(char *fmt, ...); * ---------------------------------------------------------------- */ -#if defined(PORTNAME_hpux) +#if defined(hpux) #include "port/hpux/fixade.h" /* for 8.07 unaligned access fixup */ -#endif /* PORTNAME_hpux */ +#endif /* hpux */ -#if defined(PORTNAME_sparc) +#if defined(sparc) #define memmove(d, s, l) bcopy(s, d, l) #endif |