about summary refs log tree commit diff
path: root/stdlib/lshift.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/lshift.c')
-rw-r--r--stdlib/lshift.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/stdlib/lshift.c b/stdlib/lshift.c
index d7b5ab25ad..80f7fa5a02 100644
--- a/stdlib/lshift.c
+++ b/stdlib/lshift.c
@@ -31,17 +31,9 @@ along with the GNU MP Library; see the file COPYING.LIB.  If not, see
 */
 
 mp_limb_t
-#if __STDC__
 mpn_lshift (register mp_ptr wp,
 	    register mp_srcptr up, mp_size_t usize,
 	    register unsigned int cnt)
-#else
-mpn_lshift (wp, up, usize, cnt)
-     register mp_ptr wp;
-     register mp_srcptr up;
-     mp_size_t usize;
-     register unsigned int cnt;
-#endif
 {
   register mp_limb_t high_limb, low_limb;
   register unsigned sh_1, sh_2;