We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78b8651 commit c54004fCopy full SHA for c54004f
1 file changed
libc-bottom-half/sources/sbrk.c
@@ -5,7 +5,7 @@
5
6
/* Bare-bones implementation of sbrk: just call memory.grow. */
7
void *sbrk(intptr_t increment) {
8
- /* We only supprt page-size increments. */
+ /* We only support page-size increments. */
9
if (increment % PAGESIZE != 0) {
10
abort();
11
}
0 commit comments