libc: Make string_to_integer_type static

This commit is contained in:
apio 2022-10-23 12:28:25 +02:00
parent 35616993f8
commit 19ee21ae5a

View File

@ -4,7 +4,7 @@
#include <sys/syscall.h> #include <sys/syscall.h>
#include <unistd.h> #include <unistd.h>
template <typename T> T string_to_integer_type(const char* str) template <typename T> static T string_to_integer_type(const char* str)
{ {
bool neg = false; bool neg = false;
T val = 0; T val = 0;