comparison lib-src/update-game-score.c @ 109511:09a43f890565

Add NO_RETURN specifiers to functions in lib-src. * lib-src/update-game-score.c (usage): Add NO_RETURN specifier. * lib-src/movemail.c (fatal, pfatal_with_name, pfatal_and_delete): * lib-src/make-docfile.c (fatal): * lib-src/hexl.c (usage): * lib-src/fakemail.c (fatal): * lib-src/etags.c (fatal, suggest_asking_for_help, pfatal): * lib-src/emacsclient.c (fatal): * lib-src/b2m.c (fatal): Likewise.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 24 Jul 2010 10:18:18 -0700
parents 834e32d50d35
children fdbd24f8d999
comparison
equal deleted inserted replaced
109510:fb2c5240d81c 109511:09a43f890565
57 #include <sys/stat.h> 57 #include <sys/stat.h>
58 58
59 /* Needed for SunOS4, for instance. */ 59 /* Needed for SunOS4, for instance. */
60 extern char *optarg; 60 extern char *optarg;
61 extern int optind, opterr; 61 extern int optind, opterr;
62
63 int usage (int err) NO_RETURN;
62 64
63 #define MAX_ATTEMPTS 5 65 #define MAX_ATTEMPTS 5
64 #define MAX_SCORES 200 66 #define MAX_SCORES 200
65 #define MAX_DATA_LEN 1024 67 #define MAX_DATA_LEN 1024
66 68