Skip to content

Commit

Permalink
Add _CUPS_NORETURN to missing functions
Browse files Browse the repository at this point in the history
  • Loading branch information
AtariDreams committed Sep 1, 2021
1 parent 9d4e1ef commit 10d19ff
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cups/tlscheck.c
Expand Up @@ -22,7 +22,7 @@ int main(void) { puts("Sorry, no TLS support compiled in."); return (1); }
* Local functions...
*/

static void usage(void);
static void usage(void) _CUPS_NORETURN;


/*
Expand Down
2 changes: 1 addition & 1 deletion ppdc/ppdc.cxx
Expand Up @@ -21,7 +21,7 @@
// Local functions...
//

static void usage(void);
static void usage(void) _CUPS_NORETURN;


//
Expand Down
2 changes: 1 addition & 1 deletion ppdc/ppdhtml.cxx
Expand Up @@ -20,7 +20,7 @@
// Local functions...
//

static void usage(void);
static void usage(void) _CUPS_NORETURN;


//
Expand Down
2 changes: 1 addition & 1 deletion ppdc/ppdi.cxx
Expand Up @@ -21,7 +21,7 @@
// Local functions...
//

static void usage(void);
static void usage(void) _CUPS_NORETURN;


//
Expand Down
2 changes: 1 addition & 1 deletion ppdc/ppdmerge.cxx
Expand Up @@ -22,7 +22,7 @@
//

static const char *ppd_locale(ppd_file_t *ppd);
static void usage(void);
static void usage(void) _CUPS_NORETURN;


//
Expand Down
2 changes: 1 addition & 1 deletion ppdc/ppdpo.cxx
Expand Up @@ -21,7 +21,7 @@
//

static void add_ui_strings(ppdcDriver *d, ppdcCatalog *catalog);
static void usage(void);
static void usage(void) _CUPS_NORETURN;


//
Expand Down

0 comments on commit 10d19ff

Please sign in to comment.