X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-atexit.c;h=08d1ed909c22bd2b1f7c48df929125e2f40f301a;hb=3b1e7b987f936143f1e133401882f87fc411014e;hp=883b05651e3bd3335204b724cbd099f349b78ea0;hpb=57fdfd3f8ec62b105c53bcdf6f127c35c7fe7391;p=gnulib.git diff --git a/tests/test-atexit.c b/tests/test-atexit.c index 883b05651..08d1ed909 100644 --- a/tests/test-atexit.c +++ b/tests/test-atexit.c @@ -1,5 +1,5 @@ /* Test of execution of program termination handlers. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,12 +19,16 @@ #include #include + +#include "signature.h" +SIGNATURE_CHECK (atexit, int, (void (*) (void))); + #include #define TEMPFILE "t-atexit.tmp" static void -clear_temp_file () +clear_temp_file (void) { unlink (TEMPFILE); }