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