diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:55:36 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:02 +0200 |
commit | ca4ec8039628cac6600541472b068be7535d4bb4 (patch) | |
tree | 93a4212150449d0a326ef7e259b6f802c4099f95 /sunrpc/des_impl.c | |
parent | 24cffce7366c4070d8f823702a4fcec2cb732595 (diff) | |
download | glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.gz glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.xz glibc-ca4ec8039628cac6600541472b068be7535d4bb4.zip |
sunrpc: Remove internal_function attribute
Diffstat (limited to 'sunrpc/des_impl.c')
-rw-r--r-- | sunrpc/des_impl.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sunrpc/des_impl.c b/sunrpc/des_impl.c index da0b8cee15..d1d2edfbc8 100644 --- a/sunrpc/des_impl.c +++ b/sunrpc/des_impl.c @@ -370,13 +370,11 @@ static const uint32_t des_skb[8][64] = static const char shifts2[16] = {0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0}; -static void des_set_key (unsigned char *, unsigned long *) internal_function; -static void des_encrypt (unsigned long *, unsigned long *, int) - internal_function; +static void des_set_key (unsigned char *, unsigned long *); +static void des_encrypt (unsigned long *, unsigned long *, int); int _des_crypt (char *, unsigned, struct desparams *); static void -internal_function des_set_key (unsigned char *key, unsigned long *schedule) { register unsigned long c, d, t, s; @@ -439,7 +437,6 @@ des_set_key (unsigned char *key, unsigned long *schedule) static void -internal_function des_encrypt (unsigned long *buf, unsigned long *schedule, int encrypt) { register unsigned long l, r, t, u; |