Files
ftmemsim-valgrind/none/tests/dastest_c.c
Nicholas Nethercote afebe61b37 Files updated, added and removed in order to turn the ERASER branch into HEAD
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1086
2002-09-23 09:36:25 +00:00

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;
}