* gmon.h: Replace #elif with #else/#endif.

This commit is contained in:
Ian Lance Taylor 1996-08-30 16:19:15 +00:00
parent 492cfc71b8
commit 76a61985c1
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Aug 30 12:16:11 1996 Ian Lance Taylor <ian@cygnus.com>
* gmon.h: Replace #elif with #else/#endif.
Thu Aug 29 17:04:10 1996 Michael Meissner <meissner@tiktok.cygnus.com>
* configure.in (i[345]86-*-*): Recognize i686 for pentium pro.

View File

@ -47,10 +47,12 @@ struct raw_phdr
* a size that is a multiple of 8.
*/
char pad[4];
#elif defined (BSD44_FORMAT)
#else
#ifdef BSD44_FORMAT
char version[4]; /* version number */
char profrate[4]; /* profiling clock rate */
char spare[3*4]; /* reserved */
#endif
#endif
};