diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-06-08 00:22:23 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-06-08 00:22:23 +0000 |
commit | 60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca (patch) | |
tree | 29d9258b64874c6c9838757a9c67ef62a6a0868c /login | |
parent | 2e09a79ada1f6d92809a037d41895e3d9302ad59 (diff) | |
download | glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.tar.gz glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.tar.xz glibc-60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca.zip |
Use (void) in no-arguments function definitions.
Diffstat (limited to 'login')
-rw-r--r-- | login/getpt.c | 2 | ||||
-rw-r--r-- | login/tst-utmp.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/login/getpt.c b/login/getpt.c index d36e83684e..813e7acd10 100644 --- a/login/getpt.c +++ b/login/getpt.c @@ -22,7 +22,7 @@ /* Open the master side of a pseudoterminal and return its file descriptor, or -1 on error. */ int -__getpt () +__getpt (void) { __set_errno (ENOSYS); return -1; diff --git a/login/tst-utmp.c b/login/tst-utmp.c index 573d4a92c1..a61b54305e 100644 --- a/login/tst-utmp.c +++ b/login/tst-utmp.c @@ -395,7 +395,7 @@ do_test (int argc, char *argv[]) /* No field 'ut_type' in struct utmp. */ int -main () +main (void) { return 0; } |