diff options
Diffstat (limited to 'src/spawn-w32.c')
-rw-r--r-- | src/spawn-w32.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/src/spawn-w32.c b/src/spawn-w32.c index 1c0daa9..4e0f206 100644 --- a/src/spawn-w32.c +++ b/src/spawn-w32.c @@ -952,8 +952,9 @@ process_kill (gpgrt_process_t process, unsigned int exitcode) return ec; } -static gpg_err_code_t -process_vctl (gpgrt_process_t process, unsigned int request, va_list arg_ptr) +gpg_err_code_t +_gpgrt_process_vctl (gpgrt_process_t process, unsigned int request, + va_list arg_ptr) { switch (request) { @@ -1066,18 +1067,6 @@ process_vctl (gpgrt_process_t process, unsigned int request, va_list arg_ptr) } gpg_err_code_t -_gpgrt_process_ctl (gpgrt_process_t process, unsigned int request, ...) -{ - va_list arg_ptr; - gpg_err_code_t ec; - - va_start (arg_ptr, request); - ec = process_vctl (process, request, arg_ptr); - va_end (arg_ptr); - return ec; -} - -gpg_err_code_t _gpgrt_process_wait (gpgrt_process_t process, int hang) { gpg_err_code_t ec; |