sigset_t and gcc
From: Jade Fox (cjchen_at_eden.rutgers.edu)
Date: 11/26/03
- Next message: Mark A. Odell: "Re: [OT] about BigEndian and LittleEndian"
- Previous message: Anuradha: "Re: [OT] Indian C programmers and "u""
- Next in thread: Chris Dollin: "Re: sigset_t and gcc"
- Reply: Chris Dollin: "Re: sigset_t and gcc"
- Reply: Richard Bos: "Re: sigset_t and gcc"
- Reply: Floyd Davidson: "Re: sigset_t and gcc"
- Reply: Dan Pop: "Re: sigset_t and gcc"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 26 Nov 2003 06:58:21 -0800
Can anybody tell me what is wrong with the following code?
It compiles ok with 'gcc file.c',
but not 'gcc -ansi file.c' or 'gcc -std=c99 file.c'.
It complains that 'sigset_t' is undeclared.
What options am I missing? Thanks
#include <signal.h>
int main()
{
sigset_t set;
}
- Next message: Mark A. Odell: "Re: [OT] about BigEndian and LittleEndian"
- Previous message: Anuradha: "Re: [OT] Indian C programmers and "u""
- Next in thread: Chris Dollin: "Re: sigset_t and gcc"
- Reply: Chris Dollin: "Re: sigset_t and gcc"
- Reply: Richard Bos: "Re: sigset_t and gcc"
- Reply: Floyd Davidson: "Re: sigset_t and gcc"
- Reply: Dan Pop: "Re: sigset_t and gcc"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|