diff options
author | Miles Bader <miles@gnu.org> | 1996-02-19 21:41:51 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-02-19 21:41:51 +0000 |
commit | d3870e04be6f1ec31ab868fc6bebdc3790ed9330 (patch) | |
tree | a99f586d3878845fd6b6af2b240691990f2ff373 /utils | |
parent | e9f09afd424d4923d79481ca55fabb5e10fb4cc1 (diff) |
(STRINGIFY): Make work. Is this in a header somewhere?
(_STRINGIFY): New macro. Ick.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/settrans.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/settrans.c b/utils/settrans.c index 9905c782..a69b7e9c 100644 --- a/utils/settrans.c +++ b/utils/settrans.c @@ -32,7 +32,8 @@ #define DEFAULT_TIMEOUT 60 -#define STRINGIFY(arg) #arg +#define _STRINGIFY(arg) #arg +#define STRINGIFY(arg) _STRINGIFY (arg) static struct argp_option options[] = { |