A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://svn.python.org/projects/python/branches/r23a2-branch/PC/os2emx/dllentry.c below:

/* This is the entry point for Python DLL(s). It also provides an getenv() function that works from within DLLs. */ #define NULL 0 /* Make references to imported symbols to pull them from static library */ #define REF(s) extern void s (); void *____ref_##s = &s; REF (Py_Main); #include extern int _CRT_init (void); extern void _CRT_term (void); extern void __ctordtorInit (void); extern void __ctordtorTerm (void); unsigned long _DLL_InitTerm (unsigned long mod_handle, unsigned long flag) { switch (flag) { case 0: if (_CRT_init ()) return 0; __ctordtorInit (); /* Ignore fatal signals */ signal (SIGSEGV, SIG_IGN); signal (SIGFPE, SIG_IGN); return 1; case 1: __ctordtorTerm (); _CRT_term (); return 1; default: return 0; } }

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4