+#ifndef ARG_MAX
+#define        ARG_MAX         _SC_ARG_MAX
+#endif
+

The above is clearly wrong, _SC_ARG_MAX is a selection parameter for sysconf not a usefull value in itself.

If you want to go down this road it should be

#ifndef ARG_MAX
#define ARG_MAX (sysconf(_SC_ARG_MAX))
#endif



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to