mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-05-01 14:49:35 +00:00
10 lines
142 B
C
10 lines
142 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include "libadd.h"
|
||
|
|
||
|
int add(int a, int b) {
|
||
|
printf("%d + %d = %d\n", a, b, a+b);
|
||
|
return a + b;
|
||
|
}
|
||
|
|