Date: Sun, 19 Apr 1998 13:47:23 +0300 (IDT) From: Eli Zaretskii To: Paul Derbyshire cc: djgpp AT delorie DOT com Subject: Re: getdate() In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Fri, 17 Apr 1998, Paul Derbyshire wrote: > I notice the function getdate() to obtain the system clock date is in dos.h. > Something tells me this isn't an ANSI or POSIX header. It is very easy to know which functions in DJGPP are ANSI, Posix, or neither. You just need to look at the header where its prototype is kept. Every function whose prototype is before the line which says "#ifndef __STRICT_ANSI__" is ANSI; functions whose prototypes are after the above line but before the line which says "#ifndef _POSIX_SOURCE" are Posix; functions whose prototypes are after the second line, are neither.