diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-08-20 23:30:14 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-08-20 23:30:14 +0200 |
commit | 75b1f41bac0b70d9f87fbafde7cb94b9da3607c1 (patch) | |
tree | b186d0f5eaa243a54fc8040b2d24b066d33d2145 | |
parent | 47916b2fb311a305ba31715c1e67462c7f2e1821 (diff) |
Fix raise.c build
* sysdeps/generic/raise.c: Include <pthread.h> instead of non-existing
"sig-internal.h"
-rw-r--r-- | sysdeps/generic/raise.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/generic/raise.c b/sysdeps/generic/raise.c index 410f557..2319cfa 100644 --- a/sysdeps/generic/raise.c +++ b/sysdeps/generic/raise.c @@ -18,7 +18,7 @@ License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "sig-internal.h" +#include <pthread.h> int raise (int signo) |