Commit d56c532e authored by Roger E. Masse's avatar Roger E. Masse

Opps, left out two defines needed for argument parsing.

parent b23e59e6
...@@ -36,6 +36,9 @@ PERFORMANCE OF THIS SOFTWARE. ...@@ -36,6 +36,9 @@ PERFORMANCE OF THIS SOFTWARE.
#include <sys/types.h> #include <sys/types.h>
#include <grp.h> #include <grp.h>
#define getintarg(v,a) PyArg_Parse((v),"i",(a))
#define getstrarg(v,a) PyArg_Parse((v),"s",(a))
static PyObject *mkgrent(p) static PyObject *mkgrent(p)
struct group *p; struct group *p;
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment