diff options
| author | Elliott Hughes <enh@google.com> | 2010-01-07 15:54:35 -0800 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-01-07 15:54:35 -0800 |
| commit | 0b5db51ea6d9c0b877d2ce26440d963760c38dfe (patch) | |
| tree | 265b0d9536ad4c39e64cd3b550c5ff9eb20b073f /libc/include | |
| parent | ee84231886c2122ea4ac62fff5334e16a26b2ab6 (diff) | |
| parent | 99d7907611725e23b6fad3ae7acff4926504e687 (diff) | |
| download | bionic-0b5db51ea6d9c0b877d2ce26440d963760c38dfe.zip bionic-0b5db51ea6d9c0b877d2ce26440d963760c38dfe.tar.gz bionic-0b5db51ea6d9c0b877d2ce26440d963760c38dfe.tar.bz2 | |
Merge "Fix usleep(3) return type to be POSIX-compliant."
Diffstat (limited to 'libc/include')
| -rw-r--r-- | libc/include/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/unistd.h b/libc/include/unistd.h index 67cb5fe..954f34e 100644 --- a/libc/include/unistd.h +++ b/libc/include/unistd.h @@ -145,7 +145,7 @@ extern int ftruncate(int, off_t); extern int pause(void); extern unsigned int alarm(unsigned int); extern unsigned int sleep(unsigned int); -extern void usleep(unsigned long); +extern int usleep(unsigned long); extern int gethostname(char *, size_t); extern int sethostname(const char *, size_t); |
