diff options
author | rsc <devnull@localhost> | 2006-04-01 19:24:03 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-04-01 19:24:03 +0000 |
commit | cbeb0b26e4c7caa8d1b47de791a7418dc20a4567 (patch) | |
tree | e0f7e445de1aa22a42ef873dc4b1118a8105ae93 /src/cmd/diff | |
parent | 226d80b8213821af0cbf092d1507c52b504fd368 (diff) | |
download | plan9port-cbeb0b26e4c7caa8d1b47de791a7418dc20a4567.tar.gz plan9port-cbeb0b26e4c7caa8d1b47de791a7418dc20a4567.tar.bz2 plan9port-cbeb0b26e4c7caa8d1b47de791a7418dc20a4567.zip |
Use gcc -ansi -pedantic in 9c. Fix many non-C89-isms.
Diffstat (limited to 'src/cmd/diff')
-rw-r--r-- | src/cmd/diff/diffio.c | 2 | ||||
-rw-r--r-- | src/cmd/diff/diffreg.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/diff/diffio.c b/src/cmd/diff/diffio.c index f522ec71..93de4e37 100644 --- a/src/cmd/diff/diffio.c +++ b/src/cmd/diff/diffio.c @@ -325,7 +325,7 @@ change(int a, int b, int c, int d) enum { - Lines = 3, /* number of lines of context shown */ + Lines = 3 /* number of lines of context shown */ }; int diff --git a/src/cmd/diff/diffreg.c b/src/cmd/diff/diffreg.c index 9a29cf61..bb3fd112 100644 --- a/src/cmd/diff/diffreg.c +++ b/src/cmd/diff/diffreg.c @@ -379,7 +379,7 @@ diffreg(char *f, char *t) return; } if (binary){ - // could use b0 and b1 but this is simpler. + /* could use b0 and b1 but this is simpler. */ if (cmp(b0, b1)) print("binary files %s %s differ\n", f, t); Bterm(b0); |