From 42c9f525369ba06742d53d7a89ad00153b317de6 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 13 Feb 2006 08:14:12 +0000 Subject: Add files for IMA. Yes, I know it's a hack and no, I won't split the affected files --- libc/pwd_grp/__parsegrent.c | 8 ++++++++ libc/pwd_grp/__parsepwent.c | 8 ++++++++ libc/pwd_grp/__parsespent.c | 8 ++++++++ libc/pwd_grp/__pgsreader.c | 8 ++++++++ libc/pwd_grp/fgetgrent.c | 8 ++++++++ libc/pwd_grp/fgetgrent_r.c | 8 ++++++++ libc/pwd_grp/fgetpwent.c | 8 ++++++++ libc/pwd_grp/fgetpwent_r.c | 8 ++++++++ libc/pwd_grp/fgetspent.c | 8 ++++++++ libc/pwd_grp/fgetspent_r.c | 8 ++++++++ libc/pwd_grp/getgrent.c | 8 ++++++++ libc/pwd_grp/getgrent_r.c | 12 ++++++++++++ libc/pwd_grp/getgrgid.c | 8 ++++++++ libc/pwd_grp/getgrgid_r.c | 8 ++++++++ libc/pwd_grp/getgrnam.c | 8 ++++++++ libc/pwd_grp/getgrnam_r.c | 8 ++++++++ libc/pwd_grp/getpw.c | 12 ++++++++++++ libc/pwd_grp/getpwent.c | 8 ++++++++ libc/pwd_grp/getpwent_r.c | 8 ++++++++ libc/pwd_grp/getpwnam.c | 8 ++++++++ libc/pwd_grp/getpwnam_r.c | 8 ++++++++ libc/pwd_grp/getpwuid.c | 8 ++++++++ libc/pwd_grp/getpwuid_r.c | 8 ++++++++ libc/pwd_grp/getspent.c | 8 ++++++++ libc/pwd_grp/getspent_r.c | 8 ++++++++ libc/pwd_grp/getspnam.c | 8 ++++++++ libc/pwd_grp/getspnam_r.c | 8 ++++++++ libc/pwd_grp/initgroups.c | 8 ++++++++ libc/pwd_grp/putgrent.c | 12 ++++++++++++ libc/pwd_grp/putpwent.c | 8 ++++++++ libc/pwd_grp/putspent.c | 8 ++++++++ libc/pwd_grp/sgetspent.c | 8 ++++++++ libc/pwd_grp/sgetspent_r.c | 8 ++++++++ 33 files changed, 276 insertions(+) create mode 100644 libc/pwd_grp/__parsegrent.c create mode 100644 libc/pwd_grp/__parsepwent.c create mode 100644 libc/pwd_grp/__parsespent.c create mode 100644 libc/pwd_grp/__pgsreader.c create mode 100644 libc/pwd_grp/fgetgrent.c create mode 100644 libc/pwd_grp/fgetgrent_r.c create mode 100644 libc/pwd_grp/fgetpwent.c create mode 100644 libc/pwd_grp/fgetpwent_r.c create mode 100644 libc/pwd_grp/fgetspent.c create mode 100644 libc/pwd_grp/fgetspent_r.c create mode 100644 libc/pwd_grp/getgrent.c create mode 100644 libc/pwd_grp/getgrent_r.c create mode 100644 libc/pwd_grp/getgrgid.c create mode 100644 libc/pwd_grp/getgrgid_r.c create mode 100644 libc/pwd_grp/getgrnam.c create mode 100644 libc/pwd_grp/getgrnam_r.c create mode 100644 libc/pwd_grp/getpw.c create mode 100644 libc/pwd_grp/getpwent.c create mode 100644 libc/pwd_grp/getpwent_r.c create mode 100644 libc/pwd_grp/getpwnam.c create mode 100644 libc/pwd_grp/getpwnam_r.c create mode 100644 libc/pwd_grp/getpwuid.c create mode 100644 libc/pwd_grp/getpwuid_r.c create mode 100644 libc/pwd_grp/getspent.c create mode 100644 libc/pwd_grp/getspent_r.c create mode 100644 libc/pwd_grp/getspnam.c create mode 100644 libc/pwd_grp/getspnam_r.c create mode 100644 libc/pwd_grp/initgroups.c create mode 100644 libc/pwd_grp/putgrent.c create mode 100644 libc/pwd_grp/putpwent.c create mode 100644 libc/pwd_grp/putspent.c create mode 100644 libc/pwd_grp/sgetspent.c create mode 100644 libc/pwd_grp/sgetspent_r.c (limited to 'libc/pwd_grp') diff --git a/libc/pwd_grp/__parsegrent.c b/libc/pwd_grp/__parsegrent.c new file mode 100644 index 000000000..e3ac4ad7b --- /dev/null +++ b/libc/pwd_grp/__parsegrent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___parsegrent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/__parsepwent.c b/libc/pwd_grp/__parsepwent.c new file mode 100644 index 000000000..2804a0a2f --- /dev/null +++ b/libc/pwd_grp/__parsepwent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___parsepwent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/__parsespent.c b/libc/pwd_grp/__parsespent.c new file mode 100644 index 000000000..08321d075 --- /dev/null +++ b/libc/pwd_grp/__parsespent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___parsespent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/__pgsreader.c b/libc/pwd_grp/__pgsreader.c new file mode 100644 index 000000000..ac39ce94f --- /dev/null +++ b/libc/pwd_grp/__pgsreader.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L___pgsreader +#include "pwd_grp.c" diff --git a/libc/pwd_grp/fgetgrent.c b/libc/pwd_grp/fgetgrent.c new file mode 100644 index 000000000..695aee119 --- /dev/null +++ b/libc/pwd_grp/fgetgrent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_fgetgrent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/fgetgrent_r.c b/libc/pwd_grp/fgetgrent_r.c new file mode 100644 index 000000000..ea97af72f --- /dev/null +++ b/libc/pwd_grp/fgetgrent_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_fgetgrent_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/fgetpwent.c b/libc/pwd_grp/fgetpwent.c new file mode 100644 index 000000000..ddcc7ffb7 --- /dev/null +++ b/libc/pwd_grp/fgetpwent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_fgetpwent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/fgetpwent_r.c b/libc/pwd_grp/fgetpwent_r.c new file mode 100644 index 000000000..8b9350347 --- /dev/null +++ b/libc/pwd_grp/fgetpwent_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_fgetpwent_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/fgetspent.c b/libc/pwd_grp/fgetspent.c new file mode 100644 index 000000000..b7c1ef24f --- /dev/null +++ b/libc/pwd_grp/fgetspent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_fgetspent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/fgetspent_r.c b/libc/pwd_grp/fgetspent_r.c new file mode 100644 index 000000000..7196d80e9 --- /dev/null +++ b/libc/pwd_grp/fgetspent_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_fgetspent_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getgrent.c b/libc/pwd_grp/getgrent.c new file mode 100644 index 000000000..808e4e817 --- /dev/null +++ b/libc/pwd_grp/getgrent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getgrent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getgrent_r.c b/libc/pwd_grp/getgrent_r.c new file mode 100644 index 000000000..5f0b7c295 --- /dev/null +++ b/libc/pwd_grp/getgrent_r.c @@ -0,0 +1,12 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#include + +#ifdef __USE_GNU +# define L_getgrent_r +# include "pwd_grp.c" +#endif diff --git a/libc/pwd_grp/getgrgid.c b/libc/pwd_grp/getgrgid.c new file mode 100644 index 000000000..96ce9039d --- /dev/null +++ b/libc/pwd_grp/getgrgid.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getgrgid +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getgrgid_r.c b/libc/pwd_grp/getgrgid_r.c new file mode 100644 index 000000000..a962f4cec --- /dev/null +++ b/libc/pwd_grp/getgrgid_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getgrgid_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getgrnam.c b/libc/pwd_grp/getgrnam.c new file mode 100644 index 000000000..3b47d9a9f --- /dev/null +++ b/libc/pwd_grp/getgrnam.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getgrnam +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getgrnam_r.c b/libc/pwd_grp/getgrnam_r.c new file mode 100644 index 000000000..592a66c47 --- /dev/null +++ b/libc/pwd_grp/getgrnam_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getgrnam_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getpw.c b/libc/pwd_grp/getpw.c new file mode 100644 index 000000000..943da3f26 --- /dev/null +++ b/libc/pwd_grp/getpw.c @@ -0,0 +1,12 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#include + +#ifdef __USE_GNU +# define L_getpw +# include "pwd_grp.c" +#endif diff --git a/libc/pwd_grp/getpwent.c b/libc/pwd_grp/getpwent.c new file mode 100644 index 000000000..a617bc8b2 --- /dev/null +++ b/libc/pwd_grp/getpwent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getpwent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getpwent_r.c b/libc/pwd_grp/getpwent_r.c new file mode 100644 index 000000000..9f00b05f4 --- /dev/null +++ b/libc/pwd_grp/getpwent_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getpwent_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getpwnam.c b/libc/pwd_grp/getpwnam.c new file mode 100644 index 000000000..d00640b54 --- /dev/null +++ b/libc/pwd_grp/getpwnam.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getpwnam +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getpwnam_r.c b/libc/pwd_grp/getpwnam_r.c new file mode 100644 index 000000000..a4440e756 --- /dev/null +++ b/libc/pwd_grp/getpwnam_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getpwnam_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getpwuid.c b/libc/pwd_grp/getpwuid.c new file mode 100644 index 000000000..16ac50f72 --- /dev/null +++ b/libc/pwd_grp/getpwuid.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getpwuid +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getpwuid_r.c b/libc/pwd_grp/getpwuid_r.c new file mode 100644 index 000000000..21d39ed7f --- /dev/null +++ b/libc/pwd_grp/getpwuid_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getpwuid_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getspent.c b/libc/pwd_grp/getspent.c new file mode 100644 index 000000000..5699b67d6 --- /dev/null +++ b/libc/pwd_grp/getspent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getspent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getspent_r.c b/libc/pwd_grp/getspent_r.c new file mode 100644 index 000000000..da147a523 --- /dev/null +++ b/libc/pwd_grp/getspent_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getspent_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getspnam.c b/libc/pwd_grp/getspnam.c new file mode 100644 index 000000000..19e40c737 --- /dev/null +++ b/libc/pwd_grp/getspnam.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getspnam +#include "pwd_grp.c" diff --git a/libc/pwd_grp/getspnam_r.c b/libc/pwd_grp/getspnam_r.c new file mode 100644 index 000000000..053b697ea --- /dev/null +++ b/libc/pwd_grp/getspnam_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_getspnam_r +#include "pwd_grp.c" diff --git a/libc/pwd_grp/initgroups.c b/libc/pwd_grp/initgroups.c new file mode 100644 index 000000000..d02be5e02 --- /dev/null +++ b/libc/pwd_grp/initgroups.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_initgroups +#include "pwd_grp.c" diff --git a/libc/pwd_grp/putgrent.c b/libc/pwd_grp/putgrent.c new file mode 100644 index 000000000..20a6faf98 --- /dev/null +++ b/libc/pwd_grp/putgrent.c @@ -0,0 +1,12 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#include + +#ifdef __USE_GNU +# define L_putgrent +# include "pwd_grp.c" +#endif diff --git a/libc/pwd_grp/putpwent.c b/libc/pwd_grp/putpwent.c new file mode 100644 index 000000000..045462e9e --- /dev/null +++ b/libc/pwd_grp/putpwent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_putpwent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/putspent.c b/libc/pwd_grp/putspent.c new file mode 100644 index 000000000..d6b5b2891 --- /dev/null +++ b/libc/pwd_grp/putspent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_putspent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/sgetspent.c b/libc/pwd_grp/sgetspent.c new file mode 100644 index 000000000..877a2478a --- /dev/null +++ b/libc/pwd_grp/sgetspent.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_sgetspent +#include "pwd_grp.c" diff --git a/libc/pwd_grp/sgetspent_r.c b/libc/pwd_grp/sgetspent_r.c new file mode 100644 index 000000000..131e0bd36 --- /dev/null +++ b/libc/pwd_grp/sgetspent_r.c @@ -0,0 +1,8 @@ +/* + * Copyright (C) 2000-2006 Erik Andersen + * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + */ + +#define L_sgetspent_r +#include "pwd_grp.c" -- cgit v1.2.3