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.

27 lines
833 B

  1. Submitted By: Jim Gifford (jim at linuxfromscratch dot org)
  2. Date: 2003-09-26
  3. Initial Package Version: 1.06
  4. Origin: Mandrake CVS
  5. Description: Fixes a few typos
  6. --- bc-1.06/lib/number.c.orig 2003-09-26 21:14:02.000000000 +0000
  7. +++ bc-1.06/lib/number.c 2003-09-26 21:14:26.000000000 +0000
  8. @@ -34,6 +34,7 @@
  9. #include <number.h>
  10. #include <assert.h>
  11. #include <stdlib.h>
  12. +#include <string.h>
  13. #include <ctype.h>/* Prototypes needed for external utility routines. */
  14. #define bc_rt_warn rt_warn
  15. --- bc-1.06/bc/load.c.orig 2003-09-26 21:14:14.000000000 +0000
  16. +++ bc-1.06/bc/load.c 2003-09-26 21:14:26.000000000 +0000
  17. @@ -156,7 +156,7 @@
  18. long label_no;
  19. long vaf_name; /* variable, array or function number. */
  20. long func;
  21. - program_counter save_adr;
  22. + static program_counter save_adr;
  23. /* Initialize. */
  24. str = code;