• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
1/* Wrapper to implement ANSI C's atexit using SunOS's on_exit. */
2/* This function is in the public domain.  --Mike Stump. */
3
4#include <config.h>
5
6int
7atexit (void (*f) (void))
8{
9  /* If the system doesn't provide a definition for atexit, use on_exit
10     if the system provides that.  */
11  on_exit (f, 0);
12  return 0;
13}
14