From 91a025fcaffd505ffdaaac90e653f39e632226bc Mon Sep 17 00:00:00 2001 From: Olivier DOSSMANN Date: Thu, 25 Jan 2018 18:16:06 +0100 Subject: [PATCH] Missing ref to mkstemps in ARM Should fix #5264 for ARM architecture --- src/lib_c/arm-linux-gnueabihf/c/stdlib.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib_c/arm-linux-gnueabihf/c/stdlib.cr b/src/lib_c/arm-linux-gnueabihf/c/stdlib.cr index 26efd0318b71..821f790fa7a8 100644 --- a/src/lib_c/arm-linux-gnueabihf/c/stdlib.cr +++ b/src/lib_c/arm-linux-gnueabihf/c/stdlib.cr @@ -14,6 +14,7 @@ lib LibC fun getenv(name : Char*) : Char* fun malloc(size : SizeT) : Void* fun mkstemp(template : Char*) : Int + fun mkstemps(template : Char*, suffixlen : Int) : Int fun putenv(string : Char*) : Int fun realloc(ptr : Void*, size : SizeT) : Void* fun realpath(name : Char*, resolved : Char*) : Char*