summaryrefslogtreecommitdiff
path: root/tst.c
diff options
context:
space:
mode:
authormartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2005-11-27 20:48:30 +0000
committermartin-s <martin-s@ffa7fe5e-494d-0410-b361-a75ebd5db220>2005-11-27 20:48:30 +0000
commit9ee36f0e01cf426bc9cc8ba00ee17ce5a4aab719 (patch)
treef776c0225ff1baa5ca354d77f38ad8d0a88ffa21 /tst.c
downloadnavit-svn-9ee36f0e01cf426bc9cc8ba00ee17ce5a4aab719.tar.gz
This commit was generated by cvs2svn to compensate for changes in r4,
which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.code.sf.net/p/navit/code/trunk/navit@5 ffa7fe5e-494d-0410-b361-a75ebd5db220
Diffstat (limited to 'tst.c')
-rw-r--r--tst.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/tst.c b/tst.c
new file mode 100644
index 00000000..16cd8834
--- /dev/null
+++ b/tst.c
@@ -0,0 +1,15 @@
+#include <glib/gmacros.h>
+#include <glib/gtypes.h>
+#include <glib.h>
+
+int tst(void)
+{
+ unsigned short t1=20;
+ unsigned short t2=10;
+ return t2-t1;
+}
+
+int main(int argc, char **argv)
+{
+ printf("res=%d\n", tst());
+}