Fri, 07 Mar 2003 11:02:12 +0000
added noreturn attribute to pdf_fatal().
pdf_util.h | file | annotate | diff | revisions |
1.1 diff -r 96c64a7566df -r 0fc65859d436 pdf_util.h 1.2 --- a/pdf_util.h Fri Mar 07 10:16:08 2003 +0000 1.3 +++ b/pdf_util.h Fri Mar 07 11:02:12 2003 +0000 1.4 @@ -4,7 +4,7 @@ 1.5 * will be compressed using ITU-T T.6 (G4) fax encoding. 1.6 * 1.7 * PDF routines 1.8 - * $Id: pdf_util.h,v 1.4 2003/03/04 17:58:36 eric Exp $ 1.9 + * $Id: pdf_util.h,v 1.5 2003/03/07 03:02:12 eric Exp $ 1.10 * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com> 1.11 * 1.12 * This program is free software; you can redistribute it and/or modify 1.13 @@ -27,7 +27,7 @@ 1.14 #include <assert.h> 1.15 1.16 1.17 -void pdf_fatal (char *fmt, ...); 1.18 +void pdf_fatal (char *fmt, ...) __attribute__ ((noreturn)); 1.19 1.20 void *pdf_calloc (size_t nmemb, size_t size); 1.21