Opps, left out two defines needed for argument parsing.
This commit is contained in:
parent
a09ec19a33
commit
cfe3b61c02
|
@ -36,6 +36,9 @@ PERFORMANCE OF THIS SOFTWARE.
|
|||
#include <sys/types.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)
|
||||
struct group *p;
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue