aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/defs.c
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1999-04-26 08:54:25 +0000
committerBrian Somers <brian@FreeBSD.org>1999-04-26 08:54:25 +0000
commit119386a38b83c9f91ef2cef80153425fe523dd14 (patch)
treec841e19f396ee18cef7bca4d61795bb0aece75e0 /usr.sbin/ppp/defs.c
parentb941043fa25b710f75e25cd38dbfe24d4bb04e68 (diff)
downloadsrc-119386a38b83c9f91ef2cef80153425fe523dd14.tar.gz
src-119386a38b83c9f91ef2cef80153425fe523dd14.zip
#include <errno.h>, not <sys/errno.h>
Notes
Notes: svn path=/head/; revision=46085
Diffstat (limited to 'usr.sbin/ppp/defs.c')
-rw-r--r--usr.sbin/ppp/defs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/defs.c b/usr.sbin/ppp/defs.c
index 0e1ec625fc82..07a664d0e772 100644
--- a/usr.sbin/ppp/defs.c
+++ b/usr.sbin/ppp/defs.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: defs.c,v 1.17 1998/06/27 14:18:05 brian Exp $
+ * $Id: defs.c,v 1.18 1999/02/25 20:05:55 brian Exp $
*/
@@ -34,9 +34,9 @@
#include <sys/socket.h>
#include <ctype.h>
+#include <errno.h>
#include <stdlib.h>
#include <string.h>
-#include <sys/errno.h>
#if !defined(__FreeBSD__) || __FreeBSD__ < 3
#include <time.h>
#endif