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 | 1bb634ce247e398483c157e44c4bd8d2cef73dd0 (patch) | |
| tree | 2dc8cb8c5a0f6b219c8df70f498efe1353caec6b /libutil/libutil.h | |
| parent | 24078af1d1886060d75aa6da90eaaee07138f5ff (diff) | |
| download | pw-darwin-1bb634ce247e398483c157e44c4bd8d2cef73dd0.tar.gz pw-darwin-1bb634ce247e398483c157e44c4bd8d2cef73dd0.zip | |
ANSIfy, WARNSify, CONSTify. Bit of style(9)-ify.
Diffstat (limited to 'libutil/libutil.h')
| -rw-r--r-- | libutil/libutil.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/libutil/libutil.h b/libutil/libutil.h index b3ebc6a..f2c2663 100644 --- a/libutil/libutil.h +++ b/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); |
