Bran's Kernel Development Tutorial Known Bugs: Difference between revisions

Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content deleted Content added
Change wording in one place
uint_32 is really uint32_t
Line 70: Line 70:


===Compiler error: unknown type name ‘size_t'===
===Compiler error: unknown type name ‘size_t'===
GCC produces the following errors: ''unknown type name 'X'''. The tutorial source code doesn't include any standard definitions for types like ''size_t'' or ''uint_32''. Including the following headers in each source file:
GCC produces the following errors: ''unknown type name 'X'''. The tutorial source code doesn't include any standard definitions for types like ''size_t'' or ''uint32_t''. Including the following headers in each source file:
<syntaxhighlight lang="c">
<syntaxhighlight lang="c">
#include <stdbool.h>
#include <stdbool.h>