mirror of
https://github.com/python/cpython.git
synced 2025-08-12 12:58:50 +00:00
Merged revisions 73873 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73873 | amaury.forgeotdarc | 2009-07-07 08:49:41 +0200 (mar., 07 juil. 2009) | 2 lines #6420: Fix a compilation warning in the nis module, for OpenBSD and FreeBSD. ........
This commit is contained in:
parent
f4470e1652
commit
a1a0adb03c
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ nis_mapname (char *map, int *pfix)
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __APPLE__
|
#if defined(__APPLE__) || defined(__OpenBSD__) || defined(__FreeBSD__)
|
||||||
typedef int (*foreachfunc)(unsigned long, char *, int, char *, int, void *);
|
typedef int (*foreachfunc)(unsigned long, char *, int, char *, int, void *);
|
||||||
#else
|
#else
|
||||||
typedef int (*foreachfunc)(int, char *, int, char *, int, char *);
|
typedef int (*foreachfunc)(int, char *, int, char *, int, char *);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue