compiler/std/std.h
2024-07-21 02:21:47 +12:00

14 lines
No EOL
232 B
C

#include <stdio.h>
#ifndef __RUNTIME_H__
#define __RUNTIME_H__
int add(int a, int b);
int subtract(int a, int b);
int divide(int a, int b);
int multiply(int a, int b);
void print_str(const char* s);
void print_num(int n);
#endif