Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/c.lib_rev.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define REVISION 0
#define SUBREVISION 0

#define DATE "31.08.2024"
#define DATE "01.09.2024"
#define VERS "clib4.library 1.0.0"
#define VSTRING "clib4.library 1.0.0 (31.08.2024)\r\n"
#define VERSTAG "\0$VER: clib4.library 1.0.0 (31.08.2024)"
#define VSTRING "clib4.library 1.0.0 (01.09.2024)\r\n"
#define VERSTAG "\0$VER: clib4.library 1.0.0 (01.09.2024)"
2 changes: 1 addition & 1 deletion library/stdio/fwrite.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
size_t
fwrite(const void *ptr, size_t element_size, size_t count, FILE *stream) {
struct iob *file = (struct iob *) stream;
size_t result = EOF;
size_t result = 0; //EOF??;
struct _clib4 *__clib4 = __CLIB4;

ENTER();
Expand Down