| OLD | NEW |
| 1 /* | 1 /* |
| 2 * ---------------------------------------------------------------------------- | 2 * ---------------------------------------------------------------------------- |
| 3 * nmakehlp.c -- | 3 * nmakehlp.c -- |
| 4 * | 4 * |
| 5 * This is used to fix limitations within nmake and the environment. | 5 * This is used to fix limitations within nmake and the environment. |
| 6 * | 6 * |
| 7 * Copyright (c) 2002 by David Gravereaux. | 7 * Copyright (c) 2002 by David Gravereaux. |
| 8 * Copyright (c) 2006 by Pat Thoyts | 8 * Copyright (c) 2006 by Pat Thoyts |
| 9 * | 9 * |
| 10 * See the file "license.terms" for information on usage and redistribution of | 10 * See the file "license.terms" for information on usage and redistribution of |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 static int | 593 static int |
| 594 SubstituteFile( | 594 SubstituteFile( |
| 595 const char *substitutions, | 595 const char *substitutions, |
| 596 const char *filename) | 596 const char *filename) |
| 597 { | 597 { |
| 598 size_t cbBuffer = 1024; | 598 size_t cbBuffer = 1024; |
| 599 static char szBuffer[1024], szCopy[1024]; | 599 static char szBuffer[1024], szCopy[1024]; |
| 600 char *szResult = NULL; | 600 char *szResult = NULL; |
| 601 list_item_t *substPtr = NULL; | 601 list_item_t *substPtr = NULL; |
| 602 FILE *fp, *sp; | 602 FILE *fp, *sp; |
error: old chunk mismatch |
None
| OLD | NEW |