diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-26 16:51:15 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-07-26 16:51:15 +0000 |
commit | 9fa9eb9ac7bf1d3de825ee25a8f0ae81b7b77896 (patch) | |
tree | 9b071a8105704e992946dcd6b801e9fcb7635142 /astro/luna/files/patch-iprintf-iprintf.c | |
parent | MooseFS is a Fault tolerant, High Available, Highly Performing, Scale-Out, (diff) |
Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.
With hat: portmgr
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=419133
Diffstat (limited to 'astro/luna/files/patch-iprintf-iprintf.c')
-rw-r--r-- | astro/luna/files/patch-iprintf-iprintf.c | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/astro/luna/files/patch-iprintf-iprintf.c b/astro/luna/files/patch-iprintf-iprintf.c deleted file mode 100644 index fa449c78759d..000000000000 --- a/astro/luna/files/patch-iprintf-iprintf.c +++ /dev/null @@ -1,56 +0,0 @@ ---- iprintf/iprintf.c.orig Thu Apr 23 16:23:14 1992 -+++ iprintf/iprintf.c Sat Nov 22 04:11:33 2003 -@@ -13,7 +13,7 @@ - #if defined(ANSI) - # include <stdarg.h> - #elif defined(UNIX) --# include <varargs.h> -+# include <stdarg.h> - #else - Error : varargs.h or stdarg.h is required to compile this. - #endif /* ANSI or UNIX */ -@@ -52,44 +52,21 @@ - } - - --#if defined(ANSI) - int - iprintf(char *format, ...) --#elif defined(UNIX) --int --iprintf(format, va_alist) -- char *format; -- va_dcl --#endif /* ANSI or UNIX */ - { - va_list args; - --#if defined(ANSI) - va_start (args, format); --#elif defined(UNIX) -- va_start(args); --#endif /* ANSI or UNIX */ - return (ivprintf(format, args)); - } - - --#if defined(ANSI) - int - ifprintf(FILE *stream, char *format, ...) --#elif defined(UNIX) --int --ifprintf(stream, format, va_alist) -- FILE *stream; -- char *format; -- va_dcl --#endif /* UNIX */ - { - va_list args; - --#if defined(ANSI) - va_start (args, format); --#elif defined(UNIX) -- va_start(args); --#endif /* ANSI or UNIX */ - return (ivfprintf(stream, format, args)); - } |