aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/b2m.c
diff options
context:
space:
mode:
authorDan Nicolaescu2010-07-24 10:18:18 -0700
committerDan Nicolaescu2010-07-24 10:18:18 -0700
commit68441b90e90d2d57b6755aa45559ca22dda8d04c (patch)
tree6e9997f892a46d6d7a8b25567c542a6b1019bbf2 /lib-src/b2m.c
parent4e8608ff8e2da0c921417f9274fdba943a9d7022 (diff)
downloademacs-68441b90e90d2d57b6755aa45559ca22dda8d04c.tar.gz
emacs-68441b90e90d2d57b6755aa45559ca22dda8d04c.zip
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.
Diffstat (limited to 'lib-src/b2m.c')
-rw-r--r--lib-src/b2m.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/b2m.c b/lib-src/b2m.c
index 733cd276653..f31b33f9780 100644
--- a/lib-src/b2m.c
+++ b/lib-src/b2m.c
@@ -70,7 +70,7 @@ long *xmalloc (unsigned int size);
70long *xrealloc (char *ptr, unsigned int size); 70long *xrealloc (char *ptr, unsigned int size);
71char *concat (char *s1, char *s2, char *s3); 71char *concat (char *s1, char *s2, char *s3);
72long readline (struct linebuffer *linebuffer, register FILE *stream); 72long readline (struct linebuffer *linebuffer, register FILE *stream);
73void fatal (char *message); 73void fatal (char *message) NO_RETURN;
74 74
75/* 75/*
76 * xnew -- allocate storage. SYNOPSIS: Type *xnew (int n, Type); 76 * xnew -- allocate storage. SYNOPSIS: Type *xnew (int n, Type);