mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 19:54:18 +00:00
24 lines
301 B
C
24 lines
301 B
C
|
|
#include <stdio.h>
|
|
|
|
extern int burble ( int );
|
|
|
|
__inline__
|
|
static int inline_thisfile ( void )
|
|
{
|
|
return burble(17);
|
|
}
|
|
|
|
#include "inlineh.h"
|
|
|
|
void main ( void )
|
|
{
|
|
int a;
|
|
a = 0;
|
|
a += inline_thisfile();
|
|
a *= 100;
|
|
a += inline_otherfile();
|
|
a /= 100;
|
|
printf("answer is %d\n", a);
|
|
}
|