Skip to content

Commit

Permalink
Release Cosmopolitan v3.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed May 25, 2024
1 parent ed93fc3 commit ce9aeb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion libc/integral/normalize.inc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#define __COSMOPOLITAN_MAJOR__ 3
#define __COSMOPOLITAN_MINOR__ 3
#define __COSMOPOLITAN_PATCH__ 6
#define __COSMOPOLITAN_PATCH__ 7
#define __COSMOPOLITAN__ \
(100000000 * __COSMOPOLITAN_MAJOR__ + 1000000 * __COSMOPOLITAN_MINOR__ + \
__COSMOPOLITAN_PATCH__)
Expand Down
6 changes: 1 addition & 5 deletions test/posix/fread3gb_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,8 @@ int test(void) {
return 6;
if (!(buf = malloc(SIZE)))
return 7;
if ((rc = fread(buf, SIZE, 1, f)) != 1) {
fprintf(stderr, "tell = %zu\n", ftello(f));
fprintf(stderr, "rc = %zu\n", rc);
perror("fread");
if ((rc = fread(buf, SIZE, 1, f)) != 1)
return 8;
}
if (buf[0] != 'a')
return 9;
if (buf[SIZE - 1] != 'z')
Expand Down

0 comments on commit ce9aeb2

Please sign in to comment.