summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2012-08-02 15:46:43 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-08-02 15:46:44 -0700
commita1c0f08d3ccbe5c40be53903615e59113ade4922 (patch)
treeff7c9dafd92ad2b8d6ae119697193580349302eb /libc
parent994935f64cdbd7553ecbfbd15d4e4dd429277409 (diff)
parentecb53eab4b63a777c189f880e7f88ebbe0e8101b (diff)
downloadbionic-a1c0f08d3ccbe5c40be53903615e59113ade4922.zip
bionic-a1c0f08d3ccbe5c40be53903615e59113ade4922.tar.gz
bionic-a1c0f08d3ccbe5c40be53903615e59113ade4922.tar.bz2
Merge "Fix a ENOTUP/ENOTSUP typo."
Diffstat (limited to 'libc')
-rw-r--r--libc/include/errno.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/errno.h b/libc/include/errno.h
index 2b2685a..e1b15c0 100644
--- a/libc/include/errno.h
+++ b/libc/include/errno.h
@@ -36,7 +36,7 @@ __BEGIN_DECLS
/* on Linux, ENOTSUP and EOPNOTSUPP are defined as the same error code
* even if 1000.3 states that they should be different
*/
-#ifndef ENOTUP
+#ifndef ENOTSUP
#define ENOTSUP EOPNOTSUPP
#endif