Remove unused declarations.
authorKirill Isakov <is-kir@ya.ru>
Thu, 29 Jul 2021 17:26:09 +0000 (23:26 +0600)
committerKirill Isakov <is-kir@ya.ru>
Thu, 29 Jul 2021 17:56:39 +0000 (23:56 +0600)
src/ed25519/ed25519.h
src/graph.h
src/process.h
src/script.h

index 65b191e..8e3012f 100644 (file)
 extern "C" {
 #endif
 
-#ifndef ED25519_NO_SEED
-int ED25519_DECLSPEC ed25519_create_seed(unsigned char *seed);
-#endif
-
 void ED25519_DECLSPEC ed25519_create_keypair(unsigned char *public_key, unsigned char *private_key, const unsigned char *seed);
 void ED25519_DECLSPEC ed25519_sign(unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *public_key, const unsigned char *private_key);
 int ED25519_DECLSPEC ed25519_verify(const unsigned char *signature, const unsigned char *message, size_t message_len, const unsigned char *private_key);
index fafffcb..6dd929c 100644 (file)
@@ -22,6 +22,5 @@
 */
 
 extern void graph(void);
-extern void dump_graph(void);
 
 #endif
index c6ffda8..5726df2 100644 (file)
@@ -23,9 +23,7 @@
 
 extern bool do_detach;
 
-extern void setup_signals(void);
 extern bool detach(void);
-extern bool kill_other(int);
 
 #ifdef HAVE_MINGW
 #include "event.h"
index 5172034..dfad55b 100644 (file)
@@ -28,7 +28,6 @@ typedef struct environment {
 } environment_t;
 
 extern int environment_add(environment_t *env, const char *format, ...);
-extern int environment_placeholder(environment_t *env);
 extern void environment_update(environment_t *env, int pos, const char *format, ...);
 extern void environment_init(environment_t *env);
 extern void environment_exit(environment_t *env);