Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Oct 1999 10:25:14 +0200
From:      Martin Cracauer <cracauer@cons.org>
To:        "Jordan K. Hubbard" <jkh@zippy.cdrom.com>
Cc:        current@FreeBSD.ORG
Subject:   Re: Is it just me or is sys/signal.h just completely screwed up now?
Message-ID:  <19991018102513.A7736@cons.org>
In-Reply-To: <19538.940215318@localhost>; from Jordan K. Hubbard on Sun, Oct 17, 1999 at 07:55:18PM -0700
References:  <19538.940215318@localhost>

next in thread | previous in thread | raw e-mail | index | archive | help

--X1bOJ3K7DJ5YkBrT
Content-Type: text/plain; charset=us-ascii

In <19538.940215318@localhost>, Jordan K. Hubbard wrote: 
> I've got a box running yesterday's -current and it can't compile
[...]
>        #if defined(_P1003_1B_VISIBLE) || defined(KERNEL)
>        ..
>        #endif

I use the appended C file and compilation shell script to test include
file changes. I recommend it to everyone working on headers.

Martin
-- 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Martin Cracauer <cracauer@cons.org> http://www.cons.org/cracauer/
  Tel.: (private) +4940 5221829 Fax.: (private) +4940 5228536

--X1bOJ3K7DJ5YkBrT
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=run

#! /bin/sh

set -e
set -x
cc -D_ANSI_SOURCE -Wall -Werror -o/dev/null test1.c
cc -D_POSIX_SOURCE -Wall -Werror -o/dev/null test1.c
cc -Wall -Werror -o/dev/null test1.c

--X1bOJ3K7DJ5YkBrT
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="test1.c"

#include <signal.h>

int main(void)
{
  return 0;
}

--X1bOJ3K7DJ5YkBrT--


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19991018102513.A7736>