]> source.dussan.org Git - tigervnc.git/commitdiff
Move pgettext_aux() declaration earlier
authorPierre Ossman <ossman@cendio.se>
Fri, 29 May 2020 16:48:26 +0000 (18:48 +0200)
committerPierre Ossman <ossman@cendio.se>
Sun, 31 May 2020 09:00:23 +0000 (11:00 +0200)
Some compilers get upset if a declaration comes after the definition.

vncviewer/i18n.h

index ee0e020da3a966e461c99ba17c06ea7e1bc557ca..4a50b17ca82af25d9472c2ea24d4f69cf6073d44 100644 (file)
@@ -20,8 +20,6 @@
 #ifndef _I18N_H
 #define _I18N_H 1
 
-#include "gettext.h"
-
 /* Need to tell gcc that pgettext() doesn't screw up format strings */
 #ifdef __GNUC__
 static const char *
@@ -30,6 +28,8 @@ pgettext_aux (const char *domain,
               int category) __attribute__ ((format_arg (3)));
 #endif
 
+#include "gettext.h"
+
 #define _(String) gettext (String)
 #define p_(Context, String) pgettext (Context, String)
 #define N_(String) gettext_noop (String)