diff options
author | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-17 18:58:56 -0600 |
---|---|---|
committer | Tuowen Zhao <ztuowen@gmail.com> | 2016-09-17 18:58:56 -0600 |
commit | bdaf6dc251d98fc1c93165fa8579378204b395e1 (patch) | |
tree | ef961130983342c2615a0a84c8f754a017449312 /chill/include/chillmodule.hh | |
parent | 8ef3af85585446d897ae292476f433fb6db20c0c (diff) | |
download | chill-bdaf6dc251d98fc1c93165fa8579378204b395e1.tar.gz chill-bdaf6dc251d98fc1c93165fa8579378204b395e1.tar.bz2 chill-bdaf6dc251d98fc1c93165fa8579378204b395e1.zip |
chill doc
Diffstat (limited to 'chill/include/chillmodule.hh')
-rw-r--r-- | chill/include/chillmodule.hh | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/chill/include/chillmodule.hh b/chill/include/chillmodule.hh index 2cb6587..a99db0c 100644 --- a/chill/include/chillmodule.hh +++ b/chill/include/chillmodule.hh @@ -1,19 +1,12 @@ -#ifndef BASIC_CHILLMODULE_HH -#define BASIC_CHILLMODULE_HH -// TODO Python.h defines these and something else does too -#undef _POSIX_C_SOURCE -#undef _XOPEN_SOURCE +#ifndef CHILLMODULE_HH +#define CHILLMODULE_HH #include <Python.h> -// a C routine that will be called from python -//static PyObject * chill_print_code(PyObject *self, PyObject *args); - -//static PyMethodDef ChillMethods[] ; - void finalize_loop(int loop_num_start, int loop_num_end); int get_loop_num_start(); int get_loop_num_end(); -PyMODINIT_FUNC initchill() ; // pass C methods to python +//! pass C methods to python +PyMODINIT_FUNC initchill(); #endif |