Opps, left out two defines needed for argument parsing.

This commit is contained in:
Roger E. Masse 1996-12-18 19:56:48 +00:00
parent a09ec19a33
commit cfe3b61c02
1 changed files with 3 additions and 0 deletions

View File

@ -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;
{