version 1.1.1.1, 2012/10/09 09:29:52
|
version 1.1.1.2, 2013/07/22 10:46:11
|
Line 1
|
Line 1
|
/* |
/* |
* Copyright (c) 2012 Todd C. Miller <Todd.Miller@courtesan.com> | * Copyright (c) 2012-2013 Todd C. Miller <Todd.Miller@courtesan.com> |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
* purpose with or without fee is hereby granted, provided that the above |
* purpose with or without fee is hereby granted, provided that the above |
Line 16
|
Line 16
|
|
|
#include <config.h> |
#include <config.h> |
|
|
|
#ifndef HAVE_SIG2STR |
|
|
#include <sys/types.h> |
#include <sys/types.h> |
|
|
#include <errno.h> |
#include <errno.h> |
Line 74 sig2str(int signo, char *signame)
|
Line 76 sig2str(int signo, char *signame)
|
errno = EINVAL; |
errno = EINVAL; |
return -1; |
return -1; |
} |
} |
|
#endif /* HAVE_SIG2STR */ |