mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
7 lines
94 B
C
7 lines
94 B
C
#include "a.h"
|
|
#include "b.h"
|
|
|
|
int32_t sub(int32_t a, int32_t b) {
|
|
return add(a, -1 * b);
|
|
}
|