]> git.saurik.com Git - apple/xnu.git/blobdiff - libsyscall/custom/__gettimeofday.s
xnu-1228.0.2.tar.gz
[apple/xnu.git] / libsyscall / custom / __gettimeofday.s
index aa1a7d1f086a5a747d9409bf22d3bc6126dc7ddd..c43ee761ef11f8f4bb1b6252e8de8ca2ea05376a 100644 (file)
@@ -68,17 +68,6 @@ LABEL(___gettimeofday)
     xorl       %eax, %eax
     ret
 
-#elif defined(__arm__)
-/*
- * This syscall is special cased: the timeval is returned in r0/r1.
- */
-MI_ENTRY_POINT(___gettimeofday)
-    mov     r3, r0                  // save ptr to timeval
-    SYSCALL_NONAME(gettimeofday,2)
-    stmia   r3, { r0, r1 }
-    mov     r0, #0
-    bx      lr
-
 #else
 #error Unsupported architecture
 #endif