diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-05-15 03:31:06 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-05-15 03:31:06 +0000 |
commit | 8b852ffc1bdca3ad129ad0beeb93028fa695e590 (patch) | |
tree | f4eae324dc4b6fea3a503bf1680f88edae96cf3d /ace/Svc_Conf.y | |
parent | 2fdbd9e922334cd2b39f677daabd23812a443e6c (diff) | |
download | ATCD-8b852ffc1bdca3ad129ad0beeb93028fa695e590.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Svc_Conf.y')
-rw-r--r-- | ace/Svc_Conf.y | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/ace/Svc_Conf.y b/ace/Svc_Conf.y index 26d5ce0ce02..ab78ac99d8a 100644 --- a/ace/Svc_Conf.y +++ b/ace/Svc_Conf.y @@ -6,8 +6,11 @@ #include "ace/Module.h" #include "ace/Stream.h" -static ACE_Module_Type *get_module (ACE_Static_Node *str_rec, ACE_Static_Node *svc_type); -static ACE_Module_Type *get_module (ACE_Static_Node *str_rec, const char *svc_name); +// Prototypes. +static ACE_Module_Type *get_module (ACE_Static_Node *str_rec, + ACE_Static_Node *svc_type); +static ACE_Module_Type *get_module (ACE_Static_Node *str_rec, + const char *svc_name); #define YYDEBUG_LEXER_TEXT (yytext[yyleng] = '\0', yytext) // Force the pretty debugging code to compile. @@ -286,7 +289,8 @@ yyerror (char *s) // record. static ACE_Module_Type * -get_module (ACE_Static_Node *str_rec, const char *svc_name) +get_module (ACE_Static_Node *str_rec, + const char *svc_name) { const ACE_Service_Type *sr = str_rec->record (); const ACE_Service_Type_Impl *type = sr->type (); @@ -305,7 +309,8 @@ get_module (ACE_Static_Node *str_rec, const char *svc_name) } static ACE_Module_Type * -get_module (ACE_Static_Node *str_rec, ACE_Static_Node *svc_type) +get_module (ACE_Static_Node *str_rec, + ACE_Static_Node *svc_type) { const ACE_Service_Type *sr = str_rec->record (); const ACE_Service_Type_Impl *type = sr->type (); |