Skip to content

Commit

Permalink
Fixed typos in 35_Preprocessor/Readme.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
Warren Toomey committed Nov 17, 2019
1 parent c467438 commit 0104406
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions 35_Preprocessor/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 11,7 @@ for our programs, and also put comments in them. I must admit, this feels good.
## The C Pre-Processor

I don't want to write about the C pre-processor itself, even though is
a very import part of any C environment. Instead, I'll point you at
a very important part of any C environment. Instead, I'll point you at
these two articles to read:

[C Preprocessor](https://en.wikipedia.org/wiki/C_preprocessor) at *Wikipedia*
Expand Down Expand Up @@ -90,7 90,8 @@ static char *do_compile(char *filename) {
...
// Generate the pre-processor command
snprintf(cmd, TEXTLEN, "%s %s %s", CPPCMD, INCDIR, filename);
// Open up the pre-processor pipe
// Open up the pre-processor pipe
if ((Infile = popen(cmd, "r")) == NULL) {
fprintf(stderr, "Unable to open %s: %s\n", filename, strerror(errno));
exit(1);
Expand Down

0 comments on commit 0104406

Please sign in to comment.