OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [libiberty/] [atexit.c] - Blame information for rev 107

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
/* 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
 
6
#ifdef HAVE_ON_EXIT
7
 
8
int
9
atexit(f)
10
     void (*f)();
11
{
12
  /* If the system doesn't provide a definition for atexit, use on_exit
13
     if the system provides that.  */
14
  on_exit (f, 0);
15
  return 0;
16
}
17
 
18
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.