diff options
Diffstat (limited to 'libgloss/msp430/syscalls.S')
-rw-r--r-- | libgloss/msp430/syscalls.S | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libgloss/msp430/syscalls.S b/libgloss/msp430/syscalls.S index 8aa22ae8a..accd20496 100644 --- a/libgloss/msp430/syscalls.S +++ b/libgloss/msp430/syscalls.S @@ -64,3 +64,10 @@ _isatty: getpid: MOV #42,R12 ret_ + + .weak gettimeofday + .global gettimeofday +gettimeofday: + MOV #0,R12 + ret_ + .size gettimeofday , . - gettimeofday |