mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
Release Cosmopolitan v3.3.7
This commit is contained in:
parent
ed93fc3dd7
commit
ce9aeb2aed
2 changed files with 2 additions and 6 deletions
|
@ -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__)
|
||||
|
|
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue