mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
971 B

  1. --- ./mng.c.orig 2004-05-14 11:27:46.980807688 +0200
  2. +++ ./mng.c 2004-05-14 11:28:40.725637232 +0200
  3. @@ -216,7 +216,7 @@
  4. mymng = (mngstuff*)mng_get_userdata(mng);
  5. /* pull out the chuck type as a string */
  6. - // FIXME: does this assume unsigned char?
  7. + /* FIXME: does this assume unsigned char? */
  8. chunk[0] = (char)((chunktype >> 24) & 0xFF);
  9. chunk[1] = (char)((chunktype >> 16) & 0xFF);
  10. chunk[2] = (char)((chunktype >> 8) & 0xFF);
  11. @@ -317,7 +317,7 @@
  12. }
  13. }
  14. -void
  15. +int
  16. mng_window_setup(mymng, x, y, width, height)
  17. mngstuff *mymng;
  18. int x, y;
  19. --- ./scanner.l.orig 2004-05-14 11:25:56.259639864 +0200
  20. +++ ./scanner.l 2004-05-14 11:26:57.899269216 +0200
  21. @@ -59,7 +59,7 @@
  22. #include "tokdefs.h"
  23. static int stoi __P((char *));
  24. -static inline int xdtoi __P((int));
  25. +static int xdtoi __P((int));
  26. #ifdef FLEX_SCANNER
  27. #define YY_NO_UNPUT
  28. @@ -202,7 +202,7 @@
  29. }
  30. /* Hex digit to integer. */
  31. -static inline int
  32. +static int
  33. xdtoi(c)
  34. register int c;
  35. {