remove ifdef
authorJim Meyering <jim@meyering.net>
Sat, 6 May 2000 14:33:46 +0000 (14:33 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 6 May 2000 14:33:46 +0000 (14:33 +0000)
lib/atexit.c

index 137d985..85e992f 100644 (file)
@@ -3,8 +3,6 @@
 
 #include "config.h"
 
-#ifdef HAVE_ON_EXIT
-
 int
 atexit(f)
      void (*f)();
@@ -14,5 +12,3 @@ atexit(f)
   on_exit (f, 0);
   return 0;
 }
-
-#endif