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.

34 lines
971 B

  1. Some glibc-2.3.4 / gcc-3.4 changes.
  2. - Rene Rebe <rene@rocklinux.org>
  3. --- ncompress-4.2.4/compress42.c.orig 2004-05-03 19:39:12.000000000 +0200
  4. +++ ncompress-4.2.4/compress42.c 2004-05-03 19:42:08.000000000 +0200
  5. @@ -172,7 +172,7 @@
  6. extern void *malloc LARGS((int));
  7. extern void free LARGS((void *));
  8. #ifndef _IBMR2
  9. - extern int open LARGS((char const *,int,...));
  10. + /* extern int open LARGS((const char *,int,...)); */
  11. #endif
  12. extern int close LARGS((int));
  13. extern int read LARGS((int,void *,int));
  14. @@ -638,7 +638,7 @@
  15. } ;
  16. #endif
  17. -void main ARGS((int,char **));
  18. +int main ARGS((int,char **));
  19. void Usage ARGS((void));
  20. void comprexx ARGS((char **));
  21. void compdir ARGS((char *));
  22. @@ -691,7 +691,7 @@
  23. * deterministic, and can be done on the fly. Thus, the decompression
  24. * procedure needs no input table, but tracks the way the table was built.
  25. */
  26. -void
  27. +int
  28. main(argc, argv)
  29. REG1 int argc;
  30. REG2 char *argv[];