diff options
author | Werner Koch <[email protected]> | 2024-06-25 07:06:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-06-25 07:06:04 +0000 |
commit | 69069bc63e6b1152e34e39bc322132fd4fd7284d (patch) | |
tree | 5f692ee75cd68217e480d2f2b4c8357619a05c19 /src | |
parent | Post release updates (diff) | |
download | libassuan-69069bc63e6b1152e34e39bc322132fd4fd7284d.tar.gz libassuan-69069bc63e6b1152e34e39bc322132fd4fd7284d.zip |
Remove an declaration for an unused function
* src/assuan-defs.h (putc_unlocked): Remove declaration.
--
It seems the test for putc_unlocked was remove a long time ago.
GnuPG-bug-id: 7111
Diffstat (limited to 'src')
-rw-r--r-- | src/assuan-defs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/assuan-defs.h b/src/assuan-defs.h index faf9aae..5052e8e 100644 --- a/src/assuan-defs.h +++ b/src/assuan-defs.h @@ -431,9 +431,6 @@ char *stpcpy (char *dest, const char *src); #define clearenv _assuan_clearenv int setenv (const char *name, const char *value, int replace); #endif -#ifndef HAVE_PUTC_UNLOCKED -int putc_unlocked (int c, FILE *stream); -#endif #define DIM(v) (sizeof(v)/sizeof((v)[0])) |