linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* is _ISOC95_SOURCE a valid feature test macro or not?
@ 2014-03-19 12:30 Robert P. J. Day
  2014-03-19 13:23 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 2+ messages in thread
From: Robert P. J. Day @ 2014-03-19 12:30 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA


  another possibly silly observation -- /usr/include/features.h makes
no mention of _ISOC95_SOURCE in the early comment listing all(?) of
the possible feature test macros:

   ... snip ...
   __STRICT_ANSI__      ISO Standard C.
   _ISOC99_SOURCE       Extensions to ISO C89 from ISO C99.
   _ISOC11_SOURCE       Extensions to ISO C99 from ISO C11.
   _POSIX_SOURCE        IEEE Std 1003.1.
   ... snip ...

despite its "USE" macro being mentioned further down in the same
comment:

   ... snip ...
   __USE_ISOC11         Define ISO C11 things.
   __USE_ISOC99         Define ISO C99 things.
   __USE_ISOC95         Define ISO C90 AMD1 (C95) things.
   ... snip ...

as well as even further down:

#undef  __USE_ISOC95
...
#ifdef _GNU_SOURCE
# undef  _ISOC95_SOURCE
# define _ISOC95_SOURCE 1
...
/* This is to enable the ISO C90 Amendment 1:1995 extension.  */
#if (defined _ISOC99_SOURCE || defined _ISOC11_SOURCE \
     || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199409L))
# define __USE_ISOC95   1
#endif
...

  i notice in the man pages Changes file the reference that
_ISOC95_SOURCE is now allegedly bogus:

feature_test_macros.7
    Michael Kerrisk  [Joseph S. Myers]
        Remove mention of bogus _ISOC95_SOURCE macro
            The _ISOC95_SOURCE macro is defined in <features.h>, but it
            does nothing. So remove discussion of it, and move some of
            the discussion of C95 under the ISOC99_SOURCE subhead.


but there appear to still be a couple checks for it:

man3/fwide.3:_ISOC95_SOURCE /* Since glibc 2.12 */ ||
man3/wprintf.3:_ISOC95_SOURCE /* Since glibc 2.12 */ ||

  thoughts?

rday

-- 

========================================================================
Robert P. J. Day                                 Ottawa, Ontario, CANADA
                        http://crashcourse.ca

Twitter:                                       http://twitter.com/rpjday
LinkedIn:                               http://ca.linkedin.com/in/rpjday
========================================================================
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-03-19 13:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-19 12:30 is _ISOC95_SOURCE a valid feature test macro or not? Robert P. J. Day
2014-03-19 13:23 ` Michael Kerrisk (man-pages)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).