diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/keep_data_small.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/keep_data_small.txt b/docs/keep_data_small.txt index 3c3d27396..55f4fc95a 100644 --- a/docs/keep_data_small.txt +++ b/docs/keep_data_small.txt | |||
@@ -112,7 +112,7 @@ Be careful, though, and use it only if globals fit into bb_common_bufsiz1. | |||
112 | Since bb_common_bufsiz1 is BUFSIZ + 1 bytes long and BUFSIZ can change | 112 | Since bb_common_bufsiz1 is BUFSIZ + 1 bytes long and BUFSIZ can change |
113 | from one libc to another, you have to add compile-time check for it: | 113 | from one libc to another, you have to add compile-time check for it: |
114 | 114 | ||
115 | if(sizeof(struct globals) > sizeof(bb_common_bufsiz1)) | 115 | if (sizeof(struct globals) > sizeof(bb_common_bufsiz1)) |
116 | BUG_<applet>_globals_too_big(); | 116 | BUG_<applet>_globals_too_big(); |
117 | 117 | ||
118 | 118 | ||