Skip to content

Commit

Permalink
Fix typo in stdio.h (FILE not file).
Browse files Browse the repository at this point in the history
  • Loading branch information
Chadderz121 committed May 19, 2014
1 parent ba1913e commit 640f795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bslug_include/stdio.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ typedef int (*device_file_close_t)(int fd);
typedef struct device_file {
} device_file_t;

typedef struct file {
typedef struct FILE {
int fd; /* 0x00 */
unsigned char unknown04[0x1c - 0x04]; /* 0x04 */
void *buffer; /* 0x1c */
Expand Down Expand Up @@ -95,4 +95,4 @@ int vprintf(const char *format, va_list arg);
int vsprintf(char *str, const char *format, va_list arg);
int vsnprintf(char *str, size_t len, const char *format, va_list arg);

#endif /* _STDIO_H_ */
#endif /* _STDIO_H_ */

0 comments on commit 640f795

Please sign in to comment.