Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
GaryOderNichts committed Nov 21, 2024
1 parent d653dc8 commit e444fe6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions include/coreinit/alarm.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,11 @@ OSSetPeriodicAlarm(OSAlarm *alarm,
OSTime interval,
OSAlarmCallback callback);

BOOL
OSClangTestFunction(OSAlarm* alarm,
OSTime start,
OSTime interval,
OSAlarmCallback callback);

/**
* Set an alarm tag which is used in OSCancelAlarms for bulk cancellation.
Expand Down
6 changes: 3 additions & 3 deletions include/coreinit/coroutine.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ WUT_CHECK_SIZE(OSCoroutine, 0x180);

void
OSInitCoroutine(OSCoroutine *coroutine,
void *entry,
void *stack);
void* entry,
void* stack);

uint32_t
OSLoadCoroutine(OSCoroutine *coroutine,
Expand All @@ -49,7 +49,7 @@ uint32_t
OSSaveCoroutine(OSCoroutine *coroutine);

void
OSSwitchCoroutine(OSCoroutine *from,
OSSwitchCoroutine(OSCoroutine* from,
OSCoroutine *to);

#ifdef __cplusplus
Expand Down
3 changes: 1 addition & 2 deletions libraries/libirc/src/irc.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ IRCInit(VPADChan channel,
return TRUE;
}

IRCResult
IRCConnect(VPADChan channel,
IRCResult IRCConnect(VPADChan channel,
uint16_t timeout,
CCRCDCIrdaConnectionType type,
CCRCDCIrdaBitrate bitrate,
Expand Down

0 comments on commit e444fe6

Please sign in to comment.