source: abuse/branches/pd/macabuse/imlib/include/exitproc.hpp @ 161

Last change on this file since 161 was 49, checked in by Sam Hocevar, 15 years ago
  • Imported original public domain release, for future reference.
File size: 273 bytes
Line 
1#ifndef __EXITPROC_HPP_
2#define __EXITPROC_HPP_
3
4#include <stdlib.h>
5#include "system.h"
6
7#if defined( __AIX ) || defined( __sgi ) || defined( __WATCOMC__ ) || defined( __MAC__ )
8#define exit_proc(x,y) atexit(y)
9#else
10#define exit_proc(x,y) on_exit(x,NULL)
11#endif
12
13
14#endif
Note: See TracBrowser for help on using the repository browser.