Add <string.h> include for memcpy.

This commit is contained in:
mhitch 2003-09-27 19:35:14 +00:00
parent 28527002f8
commit 3400c43ec7
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: iteconfig.c,v 1.7 2003/04/17 02:41:21 lukem Exp $ */
/* $NetBSD: iteconfig.c,v 1.8 2003/09/27 19:35:14 mhitch Exp $ */
/*
* Copyright (c) 1994 Christian E. Hopps
* All rights reserved.
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: iteconfig.c,v 1.7 2003/04/17 02:41:21 lukem Exp $");
__RCSID("$NetBSD: iteconfig.c,v 1.8 2003/09/27 19:35:14 mhitch Exp $");
#endif
#include <sys/types.h>
@ -61,6 +61,7 @@ __RCSID("$NetBSD: iteconfig.c,v 1.7 2003/04/17 02:41:21 lukem Exp $");
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termios.h>
#include <unistd.h>