diff options
author | midipix <writeonce@midipix.org> | 2019-01-07 09:38:24 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-09 22:43:16 -0500 |
commit | a6b869510ebbd46d629c7dd4379cd22902ee2974 (patch) | |
tree | 91642da0457cd040995873137d996e8174841eb2 /src/thread/nt64 | |
parent | 491a7500fa49b07757aa20095c2593feade88f23 (diff) | |
download | mmglue-a6b869510ebbd46d629c7dd4379cd22902ee2974.tar.bz2 mmglue-a6b869510ebbd46d629c7dd4379cd22902ee2974.tar.xz |
mmglue: src/thread/ following build-system transition (distinct port dir).
Diffstat (limited to 'src/thread/nt64')
-rw-r--r-- | src/thread/nt64/pthread_detach.c | 2 | ||||
-rw-r--r-- | src/thread/nt64/pthread_equal.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/nt64/pthread_detach.c b/src/thread/nt64/pthread_detach.c index 85db4cb..6fbd241 100644 --- a/src/thread/nt64/pthread_detach.c +++ b/src/thread/nt64/pthread_detach.c @@ -1,4 +1,4 @@ -#include "../pthread_detach.c" +#include "../thread/pthread_detach.c" int __pthread_detach_impl(pthread_t t) { diff --git a/src/thread/nt64/pthread_equal.c b/src/thread/nt64/pthread_equal.c index a8fcd79..dc263f7 100644 --- a/src/thread/nt64/pthread_equal.c +++ b/src/thread/nt64/pthread_equal.c @@ -1,4 +1,4 @@ -#include "../pthread_equal.c" +#include "../thread/pthread_equal.c" int __pthread_equal_impl(pthread_t a, pthread_t b) { |