summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-03-31 12:38:17 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-03-31 12:38:17 +0200
commit55301297d3e4c05ec37faf1e1695f79a74ce2cab (patch)
tree6295d785b8585a56ebe666dcec9c554dd51c884d /include
parent17fcd72add2a94c9542dba72124032b54838cb50 (diff)
downloadbusybox-w32-55301297d3e4c05ec37faf1e1695f79a74ce2cab.tar.gz
busybox-w32-55301297d3e4c05ec37faf1e1695f79a74ce2cab.tar.bz2
busybox-w32-55301297d3e4c05ec37faf1e1695f79a74ce2cab.zip
libpwdgrp: comment out functions with UNUSED_SINCE_WE_AVOID_STATIC_BUFS
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/grp_.h2
-rw-r--r--include/pwd_.h10
2 files changed, 5 insertions, 7 deletions
diff --git a/include/grp_.h b/include/grp_.h
index deaf9e6a3..7a95f88a6 100644
--- a/include/grp_.h
+++ b/include/grp_.h
@@ -55,6 +55,7 @@ extern void setgrent(void);
55/* Close the group-file stream. */ 55/* Close the group-file stream. */
56extern void endgrent(void); 56extern void endgrent(void);
57 57
58#ifdef UNUSED_SINCE_WE_AVOID_STATIC_BUFS
58/* Read an entry from the group-file stream, opening it if necessary. */ 59/* Read an entry from the group-file stream, opening it if necessary. */
59extern struct group *getgrent(void); 60extern struct group *getgrent(void);
60 61
@@ -64,6 +65,7 @@ extern struct group *fgetgrent(FILE *__stream);
64/* Write the given entry onto the given stream. */ 65/* Write the given entry onto the given stream. */
65extern int putgrent(const struct group *__restrict __p, 66extern int putgrent(const struct group *__restrict __p,
66 FILE *__restrict __f); 67 FILE *__restrict __f);
68#endif
67 69
68/* Search for an entry with a matching group ID. */ 70/* Search for an entry with a matching group ID. */
69extern struct group *getgrgid(gid_t __gid); 71extern struct group *getgrgid(gid_t __gid);
diff --git a/include/pwd_.h b/include/pwd_.h
index f52445ceb..aa63ac940 100644
--- a/include/pwd_.h
+++ b/include/pwd_.h
@@ -42,7 +42,6 @@ PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
42#define getpwuid_r bb_internal_getpwuid_r 42#define getpwuid_r bb_internal_getpwuid_r
43#define getpwnam_r bb_internal_getpwnam_r 43#define getpwnam_r bb_internal_getpwnam_r
44#define fgetpwent_r bb_internal_fgetpwent_r 44#define fgetpwent_r bb_internal_fgetpwent_r
45//#define getpw bb_internal_getpw
46 45
47 46
48/* All function names below should be remapped by #defines above 47/* All function names below should be remapped by #defines above
@@ -55,6 +54,7 @@ extern void setpwent(void);
55/* Close the password-file stream. */ 54/* Close the password-file stream. */
56extern void endpwent(void); 55extern void endpwent(void);
57 56
57#ifdef UNUSED_SINCE_WE_AVOID_STATIC_BUFS
58/* Read an entry from the password-file stream, opening it if necessary. */ 58/* Read an entry from the password-file stream, opening it if necessary. */
59extern struct passwd *getpwent(void); 59extern struct passwd *getpwent(void);
60 60
@@ -64,6 +64,7 @@ extern struct passwd *fgetpwent(FILE *__stream);
64/* Write the given entry onto the given stream. */ 64/* Write the given entry onto the given stream. */
65extern int putpwent(const struct passwd *__restrict __p, 65extern int putpwent(const struct passwd *__restrict __p,
66 FILE *__restrict __f); 66 FILE *__restrict __f);
67#endif
67 68
68/* Search for an entry with a matching user ID. */ 69/* Search for an entry with a matching user ID. */
69extern struct passwd *getpwuid(uid_t __uid); 70extern struct passwd *getpwuid(uid_t __uid);
@@ -100,11 +101,6 @@ extern int fgetpwent_r(FILE *__restrict __stream,
100 char *__restrict __buffer, size_t __buflen, 101 char *__restrict __buffer, size_t __buflen,
101 struct passwd **__restrict __result); 102 struct passwd **__restrict __result);
102 103
103/* Re-construct the password-file line for the given uid
104 in the given buffer. This knows the format that the caller
105 will expect, but this need not be the format of the password file. */
106/* UNUSED extern int getpw(uid_t __uid, char *__buffer); */
107
108POP_SAVED_FUNCTION_VISIBILITY 104POP_SAVED_FUNCTION_VISIBILITY
109 105
110#endif /* pwd.h */ 106#endif