diff options
-rw-r--r-- | src/yawa.c | 4 | ||||
-rw-r--r-- | src/yawa.h | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -142,6 +142,10 @@ parse_opt (int key, char *arg, struct argp_state *state) return 0; } +static char doc[] = "yawa -- Yet Another Wallpaper Application"; +const char *argp_program_version = PACKAGE_STRING; +const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">"; + /* The ARGP structure itself. */ static struct argp argp = {options, parse_opt, "", doc, NULL, NULL, 0}; @@ -19,10 +19,6 @@ int set_root_atoms(Pixmap pixmap); int load_image(ImageMode mode, const char *arg, int rootW, int rootH, int alpha, Imlib_Image rootimg); -static char doc[] = "yawa -- Yet Another Wallpaper Application"; -const char *argp_program_version = PACKAGE_STRING; -const char *argp_program_bug_address = "<" PACKAGE_BUGREPORT ">"; - static int num_add_colors; struct arguments { char *image; |