mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-09 21:28:19 +00:00
14 lines
197 B
C
14 lines
197 B
C
|
|
#include <stdio.h>
|
|
|
|
// dastest.s
|
|
extern int dastest ( int );
|
|
|
|
int main ( void )
|
|
{
|
|
int x = 49;
|
|
printf("dastest: x = %d\n", x);
|
|
printf("dastest: das(x) = %d\n", dastest(x));
|
|
return 0;
|
|
}
|