repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libc
/
machine
/
amdgcn
/
signal.c
blob
033d8e5cc3d82417bff0c6f398884ad0c20fd2eb
1
#include <signal.h>
2
#include <errno.h>
3
4
_sig_func_ptr
5
signal
(
int
sig
,
6
_sig_func_ptr func
)
7
{
8
errno
=
EINVAL
;
9
return
NULL
;
10
}