mescc: Mes C Library: Whitespace fixes.

* lib/linux/signal.c (signal): Whitespace fixes.
* lib/linux/time.c (time): Likewise.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-08-30 11:31:29 +02:00
parent 443f662361
commit c11a721c36
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273
3 changed files with 8 additions and 6 deletions

View file

@ -71,7 +71,9 @@ HOWEVER, the function entry already allocated space for locals on the stack (aft
asm ("SYS_exit mov____$i8,%r7"); asm ("SYS_exit mov____$i8,%r7");
asm ("swi____$0"); asm ("swi____$0");
do { do
{
asm ("wfi"); asm ("wfi");
} while (1); }
while (1);
} }