*** ./Makefile.ORIG Fri Feb 4 15:57:41 2011 --- ./Makefile Fri Feb 4 16:06:29 2011 *************** *** 6,12 **** .SUFFIXES: .1.ps .3.ps .7.ps .SUFFIXES: .1.pdf .3.pdf .7.pdf ! PREFIX = /usr/local BINDIR = $(PREFIX)/bin INCLUDEDIR = $(PREFIX)/include LIBDIR = $(PREFIX)/lib --- 6,12 ---- .SUFFIXES: .1.ps .3.ps .7.ps .SUFFIXES: .1.pdf .3.pdf .7.pdf ! PREFIX = /opt/freeware BINDIR = $(PREFIX)/bin INCLUDEDIR = $(PREFIX)/include LIBDIR = $(PREFIX)/lib *************** *** 22,29 **** VDATE = 07 January 2010 VFLAGS = -DVERSION="\"$(VERSION)\"" ! WFLAGS = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings ! CFLAGS += -g $(WFLAGS) $(VFLAGS) -DHAVE_CONFIG_H # Specify this if you want to hard-code the operating system to appear # in the lower-left hand corner of -mdoc manuals. --- 22,29 ---- VDATE = 07 January 2010 VFLAGS = -DVERSION="\"$(VERSION)\"" ! WFLAGS = ! CFLAGS += -$(WFLAGS) $(VFLAGS) -DHAVE_CONFIG_H # Specify this if you want to hard-code the operating system to appear # in the lower-left hand corner of -mdoc manuals. *** ./main.c.ORIG Fri Feb 4 15:58:30 2011 --- ./main.c Fri Feb 4 15:58:42 2011 *************** *** 26,32 **** --- 26,34 ---- #include #include #include + #ifndef _AIX51 #include + #endif #include #include #include *** ./mdoc_term.c.ORIG Fri Feb 4 15:59:05 2011 --- ./mdoc_term.c Fri Feb 4 15:59:21 2011 *************** *** 23,29 **** --- 23,31 ---- #include #include + #ifndef _AIX51 #include + #endif #include #include #include No differences encountered *** ./term.c.ORIG Fri Feb 4 15:59:59 2011 --- ./term.c Fri Feb 4 16:00:12 2011 *************** *** 23,29 **** --- 23,31 ---- #include #include + #ifndef _AIX51 #include + #endif #include #include #include *** ./html.c.ORIG Fri Feb 4 16:00:20 2011 --- ./html.c Fri Feb 4 16:00:32 2011 *************** *** 24,30 **** --- 24,32 ---- #include #include #include + #ifndef _AIX51 #include + #endif #include #include #include *** ./term_ps.c.ORIG Fri Feb 4 16:00:44 2011 --- ./term_ps.c Fri Feb 4 16:00:55 2011 *************** *** 22,28 **** --- 22,30 ---- #include #include + #ifndef _AIX51 #include + #endif #include #include #include *** ./term_ascii.c.ORIG Fri Feb 4 16:01:04 2011 --- ./term_ascii.c Fri Feb 4 16:01:19 2011 *************** *** 21,27 **** --- 21,29 ---- #include #include + #ifndef _AIX51 #include + #endif #include #include #include *** ./mandoc.h.ORIG Fri Feb 4 16:01:58 2011 --- ./mandoc.h Fri Feb 4 16:02:06 2011 *************** *** 301,307 **** struct reg regs[REG__MAX]; }; - __BEGIN_DECLS /* * Callback function for warnings, errors, and fatal errors as they --- 301,306 ---- *************** *** 310,315 **** typedef int (*mandocmsg)(enum mandocerr, void *, int, int, const char *); - __END_DECLS #endif /*!MANDOC_H*/ --- 309,313 ---- *** ./roff.h.ORIG Fri Feb 4 16:02:20 2011 --- ./roff.h Fri Feb 4 16:02:26 2011 *************** *** 28,34 **** ROFF_ERR /* badness: puke and stop */ }; - __BEGIN_DECLS struct roff; --- 28,33 ---- *************** *** 40,45 **** void roff_endparse(struct roff *); const struct tbl_span *roff_span(const struct roff *); - __END_DECLS #endif /*!ROFF_H*/ --- 39,43 ---- *** ./libmandoc.h.ORIG Fri Feb 4 16:02:43 2011 --- ./libmandoc.h Fri Feb 4 16:02:51 2011 *************** *** 17,23 **** #ifndef LIBMANDOC_H #define LIBMANDOC_H - __BEGIN_DECLS int mandoc_special(char *); void *mandoc_calloc(size_t, size_t); --- 17,22 ---- *************** *** 33,38 **** int mandoc_eos(const char *, size_t, int); int mandoc_hyph(const char *, const char *); - __END_DECLS #endif /*!LIBMANDOC_H*/ --- 32,36 ---- *** ./libroff.h.ORIG Fri Feb 4 16:03:10 2011 --- ./libroff.h Fri Feb 4 16:03:17 2011 *************** *** 17,23 **** #ifndef LIBROFF_H #define LIBROFF_H - __BEGIN_DECLS enum tbl_part { TBL_PART_OPTS, /* in options (first line) */ --- 17,22 ---- *************** *** 57,62 **** const struct tbl_span *tbl_span(const struct tbl_node *); void tbl_end(struct tbl_node *); - __END_DECLS #endif /*LIBROFF_H*/ --- 56,60 ----