summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/lldiv.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdlib/lldiv.c')
-rw-r--r--lib/libc/stdlib/lldiv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/stdlib/lldiv.c b/lib/libc/stdlib/lldiv.c
index e8d6c978b37..59c37b878cd 100644
--- a/lib/libc/stdlib/lldiv.c
+++ b/lib/libc/stdlib/lldiv.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lldiv.c,v 1.1 2006/01/13 17:58:09 millert Exp $ */
+/* $OpenBSD: lldiv.c,v 1.2 2016/08/14 23:18:03 guenther Exp $ */
/*
* Copyright (c) 1990 Regents of the University of California.
* All rights reserved.
@@ -48,3 +48,5 @@ lldiv(long long num, long long denom)
}
return (r);
}
+
+__weak_alias(qdiv, lldiv);