diff options
Diffstat (limited to 'gl/lib/argp-pin.c')
-rw-r--r-- | gl/lib/argp-pin.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gl/lib/argp-pin.c b/gl/lib/argp-pin.c index 76006cb..3699afd 100644 --- a/gl/lib/argp-pin.c +++ b/gl/lib/argp-pin.c @@ -1,5 +1,5 @@ /* Full and short program names for argp module - Copyright (C) 2005, 2009-2023 Free Software Foundation, Inc. + Copyright (C) 2005, 2009-2024 Free Software Foundation, Inc. This file is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as @@ -18,11 +18,13 @@ # include <config.h> #endif +#include <stddef.h> + #ifndef HAVE_PROGRAM_INVOCATION_SHORT_NAME -char *program_invocation_short_name = 0; +char *program_invocation_short_name = NULL; #endif #ifndef HAVE_PROGRAM_INVOCATION_NAME -char *program_invocation_name = 0; +char *program_invocation_name = NULL; #endif #if (defined HAVE_PROGRAM_INVOCATION_SHORT_NAME \ |