Mail Archives: djgpp-workers/2001/02/25/10:51:29
Comments? (Hand pasted so might now apply cleanly.)
Right,
MartinS
Index: src/docs/kb/wc204.txi
===================================================================
RCS file: /cvs/djgpp/djgpp/src/docs/kb/wc204.txi,v
retrieving revision 1.53
diff -p -u -r1.53 wc204.txi
--- wc204.txi 2001/02/09 12:38:40 1.53
+++ wc204.txi 2001/02/25 15:39:10
@@ -317,3 +317,7 @@ namespace.
@findex setjmp AT r{, also a macro}
@code{setjmp} is now a macro as well as a function. This is required by
the C AT t{++} standard, and also recommended by the C standard.
+
+@findex _get_dos_version AT r{, recognise FreeDOS}
+@code{_get_dos_version} now recognises oem number @code{0xfd} as FreeDOS.
+
Index: src/libc/dos/dos/getdos_v.c
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dos/dos/getdos_v.c,v
retrieving revision 1.2
diff -p -u -r1.2 getdos_v.c
--- getdos_v.c 1996/10/05 20:39:50 1.2
+++ getdos_v.c 2001/02/25 15:39:20
@@ -50,6 +50,7 @@ static struct _oem_info {
{0x99, "GenSoft"},
{0xee, "DR-DOS"},
{0xef, "NovelDOS"},
+ {0xfd, "FreeDOS"},
{0xff, "MS-DOS"},
{0, (char *)0}
};
- Raw text -