diff options
Diffstat (limited to 'src/ucontext/setcontext.c')
-rw-r--r-- | src/ucontext/setcontext.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ucontext/setcontext.c b/src/ucontext/setcontext.c new file mode 100644 index 00000000..c4808307 --- /dev/null +++ b/src/ucontext/setcontext.c @@ -0,0 +1,10 @@ +#include <ucontext.h> + +int setcontext(const ucontext_t *ucp) +{ + return 0; +} + +/* +XOPEN(400,700) +*/ |