Home > Archive > Unix Programming > January 2008 > standards and constants
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
standards and constants
|
|
| vippstar@gmail.com 2008-01-17, 8:11 am |
| Hello people of comp.unix.programmer
Can someone provide a list of most (or all, if possible :-) constants/
macros for standards?
For example:
--
#if __STDC_VERSION__ >= 199901L
/* C99 available */
#else
/* C89 */
#endif
--
But for most unix standards. (BSD, SRv4, POSIX all versions etc..)
Also, is a FAQ for this newsgroup maintained somewhere?
My google-fu failed to find one..
Thanks.
| |
|
| vippstar wrote:
> Can someone provide a list of most (or all, if possible :-) constants/
> macros for standards?
> For example:
> --
> #if __STDC_VERSION__ >= 199901L
> /* C99 available */
> #else
> /* C89 */
> #endif
I doubt a complete list exists...
http://predef.sourceforge.net/prestd.html
| |
| vippstar@gmail.com 2008-01-17, 7:14 pm |
| On Jan 17, 5:27 pm, Spoon <root@localhost> wrote:
> vippstar wrote:
>
> I doubt a complete list exists...http://predef.sourceforge.net/prestd.html
Excellent link! thank you very much 'Spoon'.
I take it no FAQ exists for this newsgroup?
|
|
|
|
|