freebsd-ports/shells/bash1/files/patch-builtins-common.h
David E. O'Brien 47846ba268 Fix build on -current (varargs -> stdarg)
[don't propagate the poorly named patch files from the PR]

PR:		56146
Submitted by:	Michael Edenfield <kutulu@kutulu.org>
2003-08-31 08:08:47 +00:00

11 lines
316 B
C

--- builtins/common.h.orig Fri Aug 29 12:14:20 2003
+++ builtins/common.h Fri Aug 29 12:14:46 2003
@@ -23,7 +23,7 @@
#define ISOPTION(s, c) (s[0] == '-' && !s[2] && s[1] == c)
-extern void builtin_error ();
+extern void builtin_error (char *, ...);
extern void bad_option ();
extern int get_numeric_arg ();