aboutsummaryrefslogtreecommitdiffstats
path: root/TODO
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-25 17:56:47 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-25 17:56:47 +0100
commit426ae5662edac9f950d0a41652d19c81b27b2297 (patch)
tree6d7497d155ef6602d67cf472b430d52a2e312bb0 /TODO
parentupdate todo: intptr_t can be wider than size_t (diff)
downloadslibc-426ae5662edac9f950d0a41652d19c81b27b2297.tar.gz
slibc-426ae5662edac9f950d0a41652d19c81b27b2297.tar.bz2
slibc-426ae5662edac9f950d0a41652d19c81b27b2297.tar.xz
todo: ... and ptrdiff_t
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'TODO')
-rw-r--r--TODO5
1 files changed, 3 insertions, 2 deletions
diff --git a/TODO b/TODO
index 86f5779..dbb7f0c 100644
--- a/TODO
+++ b/TODO
@@ -42,6 +42,7 @@ crt0 with cpu cycle count printing
BUFSIZ configurable by environment variable
Rate limitation of I/O-functions configured by environment variables
-The width of intptr_t should be determined by sizeof(void*),
-and the width of size_t should be determined by sizeof(sizeof(0)).
+The width of intptr_t should be determined by sizeof(void*),
+the width of size_t should be determined by sizeof(sizeof(0)), and
+the width of ptrdiff_t should be determined by sizeof(NULL - NULL);