Skip to content

Commit ce9aeb2

Browse files
committed
Release Cosmopolitan v3.3.7
1 parent ed93fc3 commit ce9aeb2

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

libc/integral/normalize.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define __COSMOPOLITAN_MAJOR__ 3
66
#define __COSMOPOLITAN_MINOR__ 3
7-
#define __COSMOPOLITAN_PATCH__ 6
7+
#define __COSMOPOLITAN_PATCH__ 7
88
#define __COSMOPOLITAN__ \
99
(100000000 * __COSMOPOLITAN_MAJOR__ + 1000000 * __COSMOPOLITAN_MINOR__ + \
1010
__COSMOPOLITAN_PATCH__)

test/posix/fread3gb_test.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,8 @@ int test(void) {
4545
return 6;
4646
if (!(buf = malloc(SIZE)))
4747
return 7;
48-
if ((rc = fread(buf, SIZE, 1, f)) != 1) {
49-
fprintf(stderr, "tell = %zu\n", ftello(f));
50-
fprintf(stderr, "rc = %zu\n", rc);
51-
perror("fread");
48+
if ((rc = fread(buf, SIZE, 1, f)) != 1)
5249
return 8;
53-
}
5450
if (buf[0] != 'a')
5551
return 9;
5652
if (buf[SIZE - 1] != 'z')

0 commit comments

Comments
 (0)