diff options
| author | Mark Murray <markm@FreeBSD.org> | 2003-10-18 10:04:16 +0000 |
|---|---|---|
| committer | Mark Murray <markm@FreeBSD.org> | 2003-10-18 10:04:16 +0000 |
| commit | 547fa0d9b785fb498d3d0db63618b781d2b83591 (patch) | |
| tree | 204484574f03753da73a26a0ec8c893e61e56e98 /lib/libutil/libutil.h | |
| parent | 804b0f979adf5d92dc50561f464dac664a06d0a8 (diff) | |
Notes
Diffstat (limited to 'lib/libutil/libutil.h')
| -rw-r--r-- | lib/libutil/libutil.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index b3ebc6a9acfe..f2c266380dbb 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -39,8 +39,6 @@ #ifndef _LIBUTIL_H_ #define _LIBUTIL_H_ -#include <sys/cdefs.h> - #define PROPERTY_MAX_NAME 64 #define PROPERTY_MAX_VALUE 512 @@ -87,13 +85,13 @@ char *fparseln(FILE *, size_t *, size_t *, const char[3], int); #endif #ifdef _PWD_H_ -int pw_copy(int _ffd, int _tfd, struct passwd *_pw, struct passwd *_old_pw); -struct passwd *pw_dup(struct passwd *_pw); +int pw_copy(int _ffd, int _tfd, const struct passwd *_pw, struct passwd *_old_pw); +struct passwd *pw_dup(const struct passwd *_pw); int pw_edit(int _notsetuid); -int pw_equal(struct passwd *_pw1, struct passwd *_pw2); +int pw_equal(const struct passwd *_pw1, const struct passwd *_pw2); void pw_fini(void); int pw_init(const char *_dir, const char *_master); -char *pw_make(struct passwd *_pw); +char *pw_make(const struct passwd *_pw); int pw_mkdb(const char *_user); int pw_lock(void); struct passwd *pw_scan(const char *_line, int _flags); |
