diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-02-03 13:02:19 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2016-02-03 13:02:19 +0000 |
commit | 463d8e9216e64084819db98438ced06f86bc43d7 (patch) | |
tree | df827f01cd74a7ffd22e8c2312682329d4229522 /Build/source/texk/kpathsea/win32lib.c | |
parent | 84ce03696690f90b9b134ea4300fa06826334947 (diff) |
texk/kpathsea: Add a function double win32_floor (double x) (w32 only)
git-svn-id: svn://tug.org/texlive/trunk@39553 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/win32lib.c')
-rw-r--r-- | Build/source/texk/kpathsea/win32lib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/win32lib.c b/Build/source/texk/kpathsea/win32lib.c index 35a0267887e..4b176aab922 100644 --- a/Build/source/texk/kpathsea/win32lib.c +++ b/Build/source/texk/kpathsea/win32lib.c @@ -31,6 +31,11 @@ static int is_include_space(const char *s) return 0; } +double win32_floor (double x) +{ + return floor (x); +} + FILE * win32_popen (const char *cmd, const char *fmode) { char mode[3]; |