From a6fc49ae082c6972a126cf255eb66343b0fc0243 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 11 Nov 2010 20:45:49 +0000 Subject: Fix AIX warnings. --- compat.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'compat.h') diff --git a/compat.h b/compat.h index eba32caa..1c279fb2 100644 --- a/compat.h +++ b/compat.h @@ -1,4 +1,4 @@ -/* $Id: compat.h,v 1.30 2010-10-27 21:40:03 nicm Exp $ */ +/* $Id: compat.h,v 1.31 2010-11-11 20:45:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -159,6 +159,7 @@ typedef uint64_t u_int64_t; #endif #ifndef HAVE_BZERO +#undef bzero #define bzero(buf, len) memset(buf, 0, len); #endif @@ -202,6 +203,7 @@ int daemon(int, int); #ifndef HAVE_FORKPTY /* forkpty.c */ +#include pid_t forkpty(int *, char *, struct termios *, struct winsize *); #endif -- cgit