freebsd-ports/archivers/freeze/files/patch-freeze.h
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00

24 lines
797 B
C

--- freeze.h.orig 1993-02-24 13:36:58 UTC
+++ freeze.h
@@ -5,21 +5,6 @@
# include <sys/stdtypes.h>
#endif
-#ifndef getc
-# ifdef m88k /* Green Hill C library bug. */
-# define getc(p) (--(p)->_cnt < 0 ? __filbuf(p) : (int) *(p)->_ptr++)
-# else
-# define getc(p) (--(p)->_cnt < 0 ? _filbuf(p) : (int) *(p)->_ptr++)
-# endif
-#endif
-#ifndef putc
-# ifdef m88k /* Green Hill C library bug. */
-# define putc(x, p) (--(p)->_cnt < 0 ? __flsbuf((unsigned char) (x), (p)) : (int) (*(p)->_ptr++ = (unsigned char) (x)))
-# else
-# define putc(x, p) (--(p)->_cnt < 0 ? _flsbuf((unsigned char) (x), (p)) : (int) (*(p)->_ptr++ = (unsigned char) (x)))
-# endif
-#endif
-
#if !defined(MSDOS) && defined(__MSDOS__)
# define MSDOS
#endif