unify include guard defines, __$FILENAME__

without the underscores these clogged up the namespace for autocompleation which was annoying.
This commit is contained in:
2012-02-17 18:59:41 +00:00
parent 99d0ba6299
commit 2b7ca2304a
657 changed files with 1669 additions and 1675 deletions

View File

@@ -25,8 +25,8 @@
*/
#ifndef PY_CAPI_UTILS_H
#define PY_CAPI_UTILS_H
#ifndef __PY_CAPI_UTILS_H__
#define __PY_CAPI_UTILS_H__
void PyC_ObSpit(const char *name, PyObject *var);
void PyC_LineSpit(void);
@@ -54,4 +54,4 @@ void PyC_SetHomePath(const char *py_path_bundle);
#define PYC_INTERPRETER_ACTIVE (((PyThreadState*)_Py_atomic_load_relaxed(&_PyThreadState_Current)) != NULL)
#endif // PY_CAPI_UTILS_H
#endif // __PY_CAPI_UTILS_H__