mirror of
https://github.com/darlinghq/darling-libxpc.git
synced 2024-11-23 11:49:42 +00:00
9 lines
202 B
C
9 lines
202 B
C
#include <stdio.h>
|
|
|
|
void *reboot3(int howto) {
|
|
/* Let's just call reboot2 */
|
|
/* It is defined in liblaunch */
|
|
/* printf("libxpc reboot3 called with howto: %d\n", howto); */
|
|
return reboot2(howto);
|
|
}
|