diff options
author | Roland McGrath <roland@gnu.org> | 1999-05-23 09:14:13 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-05-23 09:14:13 +0000 |
commit | 9ce588cf722f0c778ad1b0c49041dfc652bc5877 (patch) | |
tree | e033872c7189f9da92fd0c5fdffc2c26b896c8e0 /bits/sigstack.h | |
parent | 0151001634ca06e77fcf4a3f6eedbb2c14ad2aeb (diff) | |
download | glibc-9ce588cf722f0c778ad1b0c49041dfc652bc5877.tar.gz glibc-9ce588cf722f0c778ad1b0c49041dfc652bc5877.tar.xz glibc-9ce588cf722f0c778ad1b0c49041dfc652bc5877.zip |
1999-05-22 Roland McGrath <roland@baalperazim.frob.com>
* sysdeps/generic/bits/sigstack.h (enum SS_*): Remove trailing comma.
Diffstat (limited to 'bits/sigstack.h')
-rw-r--r-- | bits/sigstack.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bits/sigstack.h b/bits/sigstack.h index 0998256613..b1c8d61ed0 100644 --- a/bits/sigstack.h +++ b/bits/sigstack.h @@ -1,5 +1,5 @@ /* sigstack, sigaltstack definitions. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -44,10 +44,10 @@ enum { SS_ONSTACK = 0x0001, #define SS_ONSTACK SS_ONSTACK - SS_DISABLE = 0x0004, + SS_DISABLE = 0x0004 #define SS_DISABLE SS_DISABLE }; - + /* Minumum stack size for a signal handler. */ #define MINSIGSTKSZ 8192 |