summaryrefslogtreecommitdiffstats
path: root/libpthread/nptl/sysdeps/pthread
diff options
context:
space:
mode:
authorAustin Foxley <austinf@cetoncorp.com>2009-10-17 16:18:35 -0700
committerAustin Foxley <austinf@cetoncorp.com>2009-10-17 16:31:44 -0700
commit12243b1bd8102ebe808b6203de121d9d13208bb4 (patch)
tree3743ea69f93779a929f3a353c91031e825a4b600 /libpthread/nptl/sysdeps/pthread
parente8053b24253b218865eb631130c3fee073949653 (diff)
downloaduClibc-alpine-12243b1bd8102ebe808b6203de121d9d13208bb4.tar.bz2
uClibc-alpine-12243b1bd8102ebe808b6203de121d9d13208bb4.tar.xz
whitespace fixes
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/pthread')
-rw-r--r--libpthread/nptl/sysdeps/pthread/bits/libc-tsd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/bits/libc-tsd.h b/libpthread/nptl/sysdeps/pthread/bits/libc-tsd.h
index d39382952..3f1676b3e 100644
--- a/libpthread/nptl/sysdeps/pthread/bits/libc-tsd.h
+++ b/libpthread/nptl/sysdeps/pthread/bits/libc-tsd.h
@@ -24,12 +24,12 @@
set of thread-specific `void *' data used only internally by libc.
__libc_tsd_define(CLASS, KEY) -- Define or declare a `void *' datum
- for KEY. CLASS can be `static' for
+ for KEY. CLASS can be `static' for
keys used in only one source file,
empty for global definitions, or
`extern' for global declarations.
__libc_tsd_address(KEY) -- Return the `void **' pointing to
- the current thread's datum for KEY.
+ the current thread's datum for KEY.
__libc_tsd_get(KEY) -- Return the `void *' datum for KEY.
__libc_tsd_set(KEY, VALUE) -- Set the datum for KEY to VALUE.