progs
authorChristian Urban <christian dot urban at kcl dot ac dot uk>
Mon, 06 Oct 2014 02:42:49 +0100
changeset 208 204564b899a0
parent 207 e74a45933842
child 209 fd43a9cd9c07
progs
progs/test.c
progs/test1.c
--- a/progs/test.c	Mon Oct 06 02:28:53 2014 +0100
+++ b/progs/test.c	Mon Oct 06 02:42:49 2014 +0100
@@ -2,40 +2,16 @@
 #include <stdio.h>
 #include <stdlib.h>
 
-/*
-  I used as environment the virtual machine provided here
-
-    http://www.cis.upenn.edu/~cis551/box.tar
-
-  This is Debian/Etch with Linux 2.6.18 with gcc 4.1.2 from 2008.
- 
-  Some installation notes for this virtual machine under VMWare
-  are here
-
-    http://www.cis.upenn.edu/~cis551/project1.pdf
-
-  I run the virtial machine under MacOSX using the program 
-  VirtualBox available for free from 
-
-    https://www.virtualbox.org
-
-  The C-program I compiled the program with 
-
-    gcc -ggdb -fno-stack-protector -mpreferred-stack-boundary=2
-
- */
-
-
 void foo (char *bar)
 {
-  unsigned long long my_long = 101010101;    // in hex: \xB5\x4A\x05\x06
+  unsigned long my_long = 101010101;    // in hex: \xB5\x4A\x05\x06
   char  buffer[28];        
 
-  printf("my_long value = %llu\n", my_long);
+  printf("my_long value = %lu\n", my_long);
 
   strcpy(buffer, bar);  
  
-  printf("my_long value = %llu\n", my_long);
+  printf("my_long value = %lu\n", my_long);
 }
  
 int main (int argc, char **argv)
--- a/progs/test1.c	Mon Oct 06 02:28:53 2014 +0100
+++ b/progs/test1.c	Mon Oct 06 02:42:49 2014 +0100
@@ -4,7 +4,7 @@
 
 void foo (char *bar)
 {
-  unsigned long long my_long = 101010101;    // in hex: \xB5\x4A\x05\x06
+   long my_long = 101010101;    // in hex: \xB5\x4A\x05\x06
 }
  
 int main (int argc, char **argv)