mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-30 17:44:11 +02:00
15 lines
184 B
C
15 lines
184 B
C
#include <stdint.h>
|
|
#include <stdio.h>
|
|
|
|
int64_t notice(void)
|
|
{
|
|
printf("NOTICE!\n");
|
|
return 0;
|
|
}
|
|
|
|
int64_t print_int(int64_t value)
|
|
{
|
|
printf("%ld\n", value);
|
|
return 0;
|
|
}
|