Mail Archives: djgpp/1998/04/19/06:48:56
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.
- Raw text -