diff options
-rw-r--r-- | src/util/ss/ChangeLog | 2 | ||||
-rw-r--r-- | src/util/ss/ss.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/util/ss/ChangeLog b/src/util/ss/ChangeLog index 6118dff59..88200590e 100644 --- a/src/util/ss/ChangeLog +++ b/src/util/ss/ChangeLog @@ -3,7 +3,7 @@ * test_ss.c (main): Change usage of ss_listen to agree with prototype. - * ss.h: Add prototype for ss_listen() + * ss.h: Add prototype for ss_listen() and ss_create_invocation() 2000-05-01 Nalin Dahyabhai <nalin@redhat.com> diff --git a/src/util/ss/ss.h b/src/util/ss/ss.h index 6e398802d..435f40264 100644 --- a/src/util/ss/ss.h +++ b/src/util/ss/ss.h @@ -53,10 +53,12 @@ char *ss_name(); void ss_error (int, long, char const *, ...); void ss_perror (int, long, char const *); int ss_listen (int); +int ss_create_invocation(char *, char *, char *, ss_request_table *, int *); #else void ss_error (); void ss_perror (); int ss_listen (); +int ss_create_invocation(); #endif void ss_abort_subsystem(); extern ss_request_table ss_std_requests; |