diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 14:56:50 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 14:56:50 -0500 |
commit | 78ace90c3c1fa2055620ebe59f9210d9bc1e7638 (patch) | |
tree | 54dea1e6b7d0a55345539371a664d249cf69fa09 /src/ucontext/setcontext.c | |
parent | 76c7bb8bf37b539a25a8ef4c17c893eb89d2cefa (diff) |
merge XOPEN identifiers
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) +*/ |