Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/sigsetmask.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    44   This file is in the public doamin. */
    55
    6 /* Set the current signal mask to the set provided, and return the
    7    previous value */
     6/*
     7
     8@deftypefn Supplemental int sigsetmask (int @var{set})
     9
     10Sets the signal mask to the one provided in @var{set} and returns
     11the old mask (which, for libiberty's implementation, will always
     12be the value @code{1}).
     13
     14@end deftypefn
     15
     16*/
    817
    918#define _POSIX_SOURCE
     
    1726#ifdef SIG_SETMASK
    1827int
    19 DEFUN(sigsetmask,(set),
    20       int set)
     28sigsetmask (set)
     29      int set;
    2130{
    2231    sigset_t new;
Note: See TracChangeset for help on using the changeset viewer.