summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-10-02 13:20:00 +0000
committerCharles.Forsyth <devnull@localhost>2007-10-02 13:20:00 +0000
commit2b1e4b84370b327f5eb17c9ba8bc44f4296e4a86 (patch)
tree4e347c0858dcd1a13bcd23c7b434de821f160402
parent4804395f7d297ee98ff247de32f202769c4b955d (diff)
20071002-1419
-rw-r--r--CHANGES2
-rw-r--r--include/version.h2
-rw-r--r--lib9/runevseprint.c1
-rw-r--r--lib9/vseprint.c1
-rw-r--r--lib9/vsnprint.c1
5 files changed, 6 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index f6924064..621458f5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+20071002
+ ensure fmtdef.h included by some lib9 functions so that va_copy is defined on older systems that lack that needless notion
20070929
move emu/MacOSX/mkfile to .../mkfile-x11 and replace it by the variant that builds for Carbon, now the default
20070927
diff --git a/include/version.h b/include/version.h
index 39c10cef..c560352d 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20070930)"
+#define VERSION "Fourth Edition (20071002)"
diff --git a/lib9/runevseprint.c b/lib9/runevseprint.c
index 2432b581..856ebd6a 100644
--- a/lib9/runevseprint.c
+++ b/lib9/runevseprint.c
@@ -1,4 +1,5 @@
#include "lib9.h"
+#include "fmtdef.h"
Rune*
runevseprint(Rune *buf, Rune *e, char *fmt, va_list args)
diff --git a/lib9/vseprint.c b/lib9/vseprint.c
index b9675b35..1e31f76a 100644
--- a/lib9/vseprint.c
+++ b/lib9/vseprint.c
@@ -12,6 +12,7 @@
* OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
*/
#include "lib9.h"
+#include "fmtdef.h"
char*
vseprint(char *buf, char *e, char *fmt, va_list args)
diff --git a/lib9/vsnprint.c b/lib9/vsnprint.c
index 3a5710cb..2006cfb3 100644
--- a/lib9/vsnprint.c
+++ b/lib9/vsnprint.c
@@ -12,6 +12,7 @@
* OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
*/
#include "lib9.h"
+#include "fmtdef.h"
int
vsnprint(char *buf, int len, char *fmt, va_list args)