Changed return type of init function to void.

This commit is contained in:
mainzelm 2001-01-01 17:21:35 +00:00
parent 1ea7c8604e
commit be6aa6e152
1 changed files with 1 additions and 2 deletions

View File

@ -132,11 +132,10 @@ s48_value group_info_name (s48_value scheme_name, s48_value group_info_record)
}
s48_value s48_init_userinfo(void){
void s48_init_userinfo(void){
S48_EXPORT_FUNCTION(user_info_uid);
S48_EXPORT_FUNCTION(user_info_name);
S48_EXPORT_FUNCTION(my_username);
S48_EXPORT_FUNCTION(group_info_gid);
S48_EXPORT_FUNCTION(group_info_name);
return S48_UNSPECIFIC;
}