* src/system.h: Add a missing __OS2__ ifdef guard.
Also adjust spacing around () to avoid a syntax-check failure.
/* Redirection and wildcarding when done by the utility itself.
Generally a noop, but used in particular for OS/2. */
#ifndef initialize_main
-# define initialize_main(ac, av) \
- do { _wildcard(ac, av); _response(ac, av); } while (0)
+# ifndef __OS2__
+# define initialize_main(ac, av)
+# else
+# define initialize_main(ac, av) \
+ do { _wildcard (ac, av); _response (ac, av); } while (0)
+# endif
#endif
#include "stat-macros.h"