From ff526e6c284c33ac8dd84692ca23ade0b673cc52 Mon Sep 17 00:00:00 2001 From: Sergey Bogolepov Date: Tue, 13 Sep 2022 18:30:09 +0300 Subject: [PATCH] [K/N] Move ptrauth.h from CoreFoundation to a more proper namespace --- kotlin-native/platformLibs/src/platform/ios/posix.def | 2 +- kotlin-native/platformLibs/src/platform/osx/posix.def | 2 +- kotlin-native/platformLibs/src/platform/tvos/posix.def | 2 +- kotlin-native/platformLibs/src/platform/watchos/posix.def | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/kotlin-native/platformLibs/src/platform/ios/posix.def b/kotlin-native/platformLibs/src/platform/ios/posix.def index 58f4c4ea85a..77f98f3ba34 100644 --- a/kotlin-native/platformLibs/src/platform/ios/posix.def +++ b/kotlin-native/platformLibs/src/platform/ios/posix.def @@ -2,7 +2,7 @@ depends = package = platform.posix headers = alloca.h assert.h complex.h ctype.h dirent.h dlfcn.h err.h errno.h fcntl.h \ fenv.h float.h fnmatch.h fts.h ftw.h getopt.h grp.h inttypes.h libgen.h limits.h \ - locale.h math.h memory.h netdb.h paths.h poll.h \ + locale.h math.h memory.h netdb.h paths.h poll.h ptrauth.h \ pthread.h pwd.h regex.h resolv.h sched.h search.h semaphore.h setjmp.h signal.h \ stdatomic.h stdint.h stdio.h stdlib.h string.h strings.h syslog.h termios.h \ time.h ucontext.h unistd.h utime.h wchar.h wctype.h xlocale.h \ diff --git a/kotlin-native/platformLibs/src/platform/osx/posix.def b/kotlin-native/platformLibs/src/platform/osx/posix.def index 6909a17a0ec..b3ab42215e0 100644 --- a/kotlin-native/platformLibs/src/platform/osx/posix.def +++ b/kotlin-native/platformLibs/src/platform/osx/posix.def @@ -2,7 +2,7 @@ depends = package = platform.posix headers = alloca.h ar.h assert.h complex.h ctype.h dirent.h dlfcn.h err.h errno.h fcntl.h \ fenv.h float.h fnmatch.h fts.h ftw.h getopt.h grp.h inttypes.h libgen.h limits.h \ - locale.h math.h memory.h netdb.h paths.h poll.h \ + locale.h math.h memory.h netdb.h paths.h poll.h ptrauth.h \ pthread.h pwd.h regex.h resolv.h sched.h search.h semaphore.h setjmp.h sgtty.h signal.h \ stdatomic.h stdint.h stdio.h stdlib.h string.h strings.h syslog.h termios.h \ time.h ucontext.h unistd.h utime.h utmp.h wchar.h wctype.h xlocale.h \ diff --git a/kotlin-native/platformLibs/src/platform/tvos/posix.def b/kotlin-native/platformLibs/src/platform/tvos/posix.def index 0a4f0509d54..b3d756c6bda 100644 --- a/kotlin-native/platformLibs/src/platform/tvos/posix.def +++ b/kotlin-native/platformLibs/src/platform/tvos/posix.def @@ -2,7 +2,7 @@ depends = package = platform.posix headers = alloca.h assert.h complex.h ctype.h dirent.h dlfcn.h err.h errno.h fcntl.h \ fenv.h float.h fnmatch.h fts.h ftw.h getopt.h grp.h inttypes.h libgen.h limits.h \ - locale.h math.h memory.h netdb.h paths.h poll.h \ + locale.h math.h memory.h netdb.h paths.h poll.h ptrauth.h \ pthread.h pwd.h regex.h resolv.h sched.h search.h semaphore.h setjmp.h signal.h \ stdatomic.h stdint.h stdio.h stdlib.h string.h strings.h syslog.h termios.h \ time.h ucontext.h unistd.h utime.h wchar.h wctype.h xlocale.h \ diff --git a/kotlin-native/platformLibs/src/platform/watchos/posix.def b/kotlin-native/platformLibs/src/platform/watchos/posix.def index e0ee7620dfb..76f55c20b67 100644 --- a/kotlin-native/platformLibs/src/platform/watchos/posix.def +++ b/kotlin-native/platformLibs/src/platform/watchos/posix.def @@ -2,7 +2,7 @@ depends = package = platform.posix headers = alloca.h assert.h complex.h ctype.h dirent.h dlfcn.h err.h errno.h fcntl.h \ fenv.h float.h fnmatch.h fts.h ftw.h getopt.h grp.h inttypes.h libgen.h limits.h \ - locale.h math.h memory.h netdb.h paths.h poll.h \ + locale.h math.h memory.h netdb.h paths.h poll.h ptrauth.h \ pthread.h pwd.h regex.h resolv.h sched.h search.h semaphore.h setjmp.h signal.h \ stdatomic.h stdint.h stdio.h stdlib.h string.h strings.h syslog.h termios.h \ time.h ucontext.h unistd.h utime.h wchar.h wctype.h xlocale.h \