summaryrefslogtreecommitdiff
path: root/lib/version-etc.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-10-06 20:30:17 +0000
committerBruno Haible <bruno@clisp.org>2003-10-06 20:30:17 +0000
commit1bd3e749e2f001b333f49fd6d8b358714f2ef09f (patch)
treea167179326c8d989faa7c8dedd8709d3d8aec33f /lib/version-etc.h
parent40b33d9d6c32cd1afac372a5da2b002aac5a881d (diff)
downloadgnulib-1bd3e749e2f001b333f49fd6d8b358714f2ef09f.tar.gz
Merge version-etc-2 back into version-etc: Better way to internationalize
the "Written by ..." sentence.
Diffstat (limited to 'lib/version-etc.h')
-rw-r--r--lib/version-etc.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/version-etc.h b/lib/version-etc.h
index e2ef98185d..d505e75eae 100644
--- a/lib/version-etc.h
+++ b/lib/version-etc.h
@@ -20,12 +20,18 @@
#ifndef VERSION_ETC_H
# define VERSION_ETC_H 1
+# include <stdarg.h>
# include <stdio.h>
-extern char *version_etc_copyright;
+extern const char *version_etc_copyright;
-void version_etc (FILE *stream,
- const char *command_name, const char *package,
- const char *version, const char *authors);
+extern void version_etc_va (FILE *stream,
+ const char *command_name, const char *package,
+ const char *version, va_list authors);
+
+extern void version_etc (FILE *stream,
+ const char *command_name, const char *package,
+ const char *version,
+ /* const char *author1, ...*/ ...);
#endif /* VERSION_ETC_H */