Cleanup: correct usage of extern-C blocks in various places

This removes extern-C blocks around other includes and adds
such blocks for some headers that need them.
This commit is contained in:
2020-07-28 16:32:30 +02:00
parent 9c1da81a4c
commit b274d18aec
94 changed files with 483 additions and 72 deletions

View File

@@ -21,6 +21,14 @@
#ifndef __BPY_UTILS_UNITS_H__
#define __BPY_UTILS_UNITS_H__
#ifdef __cplusplus
extern "C" {
#endif
PyObject *BPY_utils_units(void);
#ifdef __cplusplus
}
#endif
#endif /* __BPY_UTILS_UNITS_H__ */