Make libck project self-containing.

git-svn-id: svn://kolibrios.org@7855 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2020-05-03 08:09:36 +00:00
parent 7f1f263ff5
commit 71b99beec5
25 changed files with 325 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public acos_ as "acos"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public atan_ as "atan"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public atan2_ as "atan2"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public ceil

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public ceilf

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public cos_ as "cos"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public exp_ as "exp"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public fabs_ as "fabs"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public fabsf

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public floor

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public floorf

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public log_ as "log"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public log10_ as "log10"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public sin_ as "sin"

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public sqrt

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public sqrtf

View File

@@ -1,6 +1,6 @@
format ELF
include 'proc32.inc'
include '../proc32.inc'
section '.text' executable
public tan_ as "tan"