diff options
-rw-r--r-- | StdLib/Include/stdio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/StdLib/Include/stdio.h b/StdLib/Include/stdio.h index 62cbece..666e190 100644 --- a/StdLib/Include/stdio.h +++ b/StdLib/Include/stdio.h @@ -1291,10 +1291,10 @@ size_t fread (void * __restrict Buffer, encountered. If Size or Num is zero, fwrite returns zero and
the state of the stream remains unchanged.
**/
-size_t fwrite (void * __restrict Buffer,
- size_t Size,
- size_t Num,
- FILE * __restrict Stream
+size_t fwrite (const void * __restrict Buffer,
+ size_t Size,
+ size_t Num,
+ FILE * __restrict Stream
);
/* ################ File Positioning Functions. */
|