summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/mingw32.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-02-03 13:02:19 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2016-02-03 13:02:19 +0000
commit463d8e9216e64084819db98438ced06f86bc43d7 (patch)
treedf827f01cd74a7ffd22e8c2312682329d4229522 /Build/source/texk/kpathsea/mingw32.c
parent84ce03696690f90b9b134ea4300fa06826334947 (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/mingw32.c')
-rw-r--r--Build/source/texk/kpathsea/mingw32.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/mingw32.c b/Build/source/texk/kpathsea/mingw32.c
index f6f73719bf7..32c23e75d70 100644
--- a/Build/source/texk/kpathsea/mingw32.c
+++ b/Build/source/texk/kpathsea/mingw32.c
@@ -48,6 +48,12 @@ extern int __cdecl _free_osfhnd (int fd);
static char *get_home_directory (void);
static int _parse_root (char * name, char ** pPath);
+double
+win32_floor (double x)
+{
+ return floor (x);
+}
+
void
init_user_info (void)
{