diff options
author | OBATA Akio <obache@wizdas.com> | 2019-04-10 14:38:29 +0900 |
---|---|---|
committer | OBATA Akio <obache@wizdas.com> | 2019-04-10 14:38:29 +0900 |
commit | 35e5ff35cf0a26eef2a614bfdcf95206bb96ccbb (patch) | |
tree | 7579e3e504224b7d00b4429b338d8b0df0667b6c | |
parent | 06f9b8ef4d9aa4997b2edf253253cc587b73a26a (diff) | |
download | tdemultimedia-35e5ff35cf0a26eef2a614bfdcf95206bb96ccbb.tar.gz tdemultimedia-35e5ff35cf0a26eef2a614bfdcf95206bb96ccbb.zip |
Remove traditional `errno` usage
On modern POSIX environments, `errno` may not be simple `int` type,
and <errno.h> is sufficient for `errno` and its symbolic values.
Signed-off-by: OBATA Akio <obache@wizdas.com>
-rw-r--r-- | mpg123_artsplugin/mpg123/httpget.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mpg123_artsplugin/mpg123/httpget.c b/mpg123_artsplugin/mpg123/httpget.c index 71750115..3cf22e78 100644 --- a/mpg123_artsplugin/mpg123/httpget.c +++ b/mpg123_artsplugin/mpg123/httpget.c @@ -18,11 +18,9 @@ #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> -#include <sys/errno.h> +#include <errno.h> #include <ctype.h> -extern int errno; - #include "mpg123.h" #ifndef INADDR_NONE |