ansification: remove _PARAMS

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
This commit is contained in:
Yaakov Selkowitz
2017-12-03 20:41:16 -06:00
parent e13e191b60
commit eea249da3b
41 changed files with 444 additions and 450 deletions

View File

@@ -45,9 +45,9 @@ int posix_openpt (int);
#define _unsetenv_r UNUSED__unsetenv_r
#endif
extern _PTR memalign _PARAMS ((size_t, size_t));
extern _PTR memalign (size_t, size_t);
#if __BSD_VISIBLE || (__XSI_VISIBLE >= 4 && __POSIX_VISIBLE < 200112)
extern _PTR valloc _PARAMS ((size_t));
extern _PTR valloc (size_t);
#endif
#undef _malloc_r

View File

@@ -43,8 +43,8 @@ details. */
#ifdef __cplusplus
extern "C" {
#endif
extern int posix_fadvise _PARAMS ((int, off_t, off_t, int));
extern int posix_fallocate _PARAMS ((int, off_t, off_t));
extern int posix_fadvise (int, off_t, off_t, int);
extern int posix_fallocate (int, off_t, off_t);
#ifdef __cplusplus
}
#endif

View File

@@ -44,7 +44,7 @@ extern "C"
{
#endif
extern int flock _PARAMS ((int, int));
extern int flock (int, int);
#ifdef __cplusplus
}