diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/system.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/system.h b/src/system.h index 2d2635a68..e4bb9f56c 100644 --- a/src/system.h +++ b/src/system.h @@ -137,8 +137,12 @@ enum /* 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" |