Add #include <stdlib.h> so that "s->strings = realloc(...)" doesn't segfault

on ia64.  (This file isn't vendor branched)
This commit is contained in:
peter 2003-01-08 17:05:52 +00:00
parent 2721b74be2
commit 7033484c0c

View File

@ -34,6 +34,8 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
*/
#if 0
@ -43,6 +45,7 @@ RCSID("$Id: getarg.c,v 1.25 1998/11/22 09:45:05 assar Exp $");
#include <sys/ttycom.h>
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
#include "getarg.h"
#define ISFLAG(X) ((X).type == arg_flag || (X).type == arg_negative_flag)