pw_conf.c (d2d022b9fdebd6bfe2983bb688818ed8bfc422a6) | pw_conf.c (bcbdb01e569876034a66c001132994482b048c31) |
---|---|
1/*- 2 * Copyright (C) 1996 3 * David L. Nugent. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 17 unchanged lines hidden (view full) --- 26 27#ifndef lint 28static const char rcsid[] = 29 "$FreeBSD$"; 30#endif /* not lint */ 31 32#include <sys/types.h> 33#include <sys/sbuf.h> | 1/*- 2 * Copyright (C) 1996 3 * David L. Nugent. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 17 unchanged lines hidden (view full) --- 26 27#ifndef lint 28static const char rcsid[] = 29 "$FreeBSD$"; 30#endif /* not lint */ 31 32#include <sys/types.h> 33#include <sys/sbuf.h> |
34#include <inttypes.h> 35#include <string.h> 36#include <ctype.h> 37#include <fcntl.h> | 34 |
38#include <err.h> | 35#include <err.h> |
36#include <fcntl.h> 37#include <string.h> 38#include <unistd.h> |
|
39 40#include "pw.h" 41 42#define debugging 0 43 44enum { 45 _UC_NONE, 46 _UC_DEFAULTPWD, --- 478 unchanged lines hidden --- | 39 40#include "pw.h" 41 42#define debugging 0 43 44enum { 45 _UC_NONE, 46 _UC_DEFAULTPWD, --- 478 unchanged lines hidden --- |