1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix libk being built with -mmmx, -msse and -msse2 on x86_64.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-05-28 17:40:30 +02:00
parent 68d379c605
commit 534eb3ddd8
5 changed files with 10 additions and 6 deletions

View file

@ -1,6 +1,6 @@
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2013.
Copyright(C) Jonas 'Sortie' Termansen 2013, 2014.
This file is part of the Sortix C Library.
@ -24,7 +24,9 @@
#include <stdlib.h>
#if !defined(__is_sortix_kernel)
extern "C" double atof(const char* str)
{
return strtod(str, NULL);
}
#endif