Support the PCC compiler.

This commit is contained in:
Roy Marples 2008-02-20 18:06:01 +00:00
parent d3d22914fc
commit 405cea1f19
4 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ LDFLAGS+= ${PROGLDFLAGS}
all: depend ${PROG}
${PROG}: ${SCRIPTS} ${OBJS}
${CC} ${CFLAGS} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
clean:
rm -f ${OBJS} ${PROG} ${CLEANFILES}

View File

@ -70,7 +70,7 @@
#ifdef lint
# define _unused
#endif
#if __GNUC__ > 2 || defined(__INTEL_COMPILER)
#if __GNUC__ > 2 || defined(__INTEL_COMPILER) || defined(__PCC__)
# define _unused __attribute__((__unused__))
#endif

View File

@ -27,7 +27,7 @@
#ifndef __EINFO_H__
#define __EINFO_H__
#ifdef __GNUC__
#if defined(__GNUC__) || defined(__PCC__)
# define __EINFO_PRINTF __attribute__ ((__format__ (__printf__, 1, 2)))
# define __EINFO_XPRINTF __attribute__ ((__noreturn__, __format__ (__printf__, 1, 2)))
# define __EEND_PRINTF __attribute__ ((__format__ (__printf__, 2, 3)))

View File

@ -27,7 +27,7 @@
#if lint
# define _noreturn
#endif
#if __GNUC__ > 2 || defined(__INTEL_COMPILER)
#if __GNUC__ > 2 || defined(__INTEL_COMPILER) || defined(__PCC__)
# define _noreturn __attribute__ ((__noreturn__))
#endif