File: exitproc.hpp

package info (click to toggle)
abuse 2.00-12
  • links: PTS
  • area: main
  • in suites: slink
  • size: 12,708 kB
  • ctags: 15,389
  • sloc: ansic: 115,852; cpp: 6,792; lisp: 2,066; sh: 1,734; makefile: 1,601; asm: 264
file content (15 lines) | stat: -rw-r--r-- 232 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __EXITPROC_HPP_
#define __EXITPROC_HPP_

#include <stdlib.h>

#ifdef HAVE_ATEXIT
#define exit_proc(x,y) atexit(y)
#elif defined (HAVE_ON_EXIT)
#define exit_proc(x,y) on_exit(x,NULL)
#else
#error no atexit?!?
#endif


#endif