From: Martin Str|mberg Message-Id: <200102251551.QAA11041@mother.ludd.luth.se> Subject: FreeDOS' oem number To: djgpp-workers AT delorie DOT com (DJGPP-WORKERS) Date: Sun, 25 Feb 2001 16:51:02 +0100 (MET) X-Mailer: ELM [version 2.5 PL2] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com 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} };