1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

make sure header can be included more than once.

(This used to be commit 38ed501ac8)
This commit is contained in:
Jelmer Vernooij 2008-04-16 11:43:37 +02:00
parent 8eaf64b47b
commit 7c4a45de26

View File

@ -17,6 +17,9 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _PYRPC_H_
#define _PYRPC_H_
#define PY_CHECK_TYPE(type, var, fail) \
if (!type ## _Check(var)) {\
PyErr_Format(PyExc_TypeError, "Expected type %s", type ## _Type.tp_name); \
@ -32,3 +35,5 @@
#ifndef PyAPI_DATA
# define PyAPI_DATA(RTYPE) extern RTYPE
#endif
#endif /* _PYRPC_H_ */