fix typos, mostly in comments

This commit is contained in:
Fred Drake 2005-10-28 14:39:47 +00:00
parent f339654280
commit db390c1ad8
10 changed files with 14 additions and 13 deletions

View file

@ -216,7 +216,7 @@ inv_handle:
}
}
/* return a string describing last occured dl error */
/* return a string describing last occurred dl error */
char *dlerror()
{
return dlerr;

View file

@ -45,7 +45,7 @@ void *dlsym(void *handle, char *symbol);
/* free dynamicaly-linked library */
int dlclose(void *handle);
/* return a string describing last occured dl error */
/* return a string describing last occurred dl error */
char *dlerror(void);
#endif /* !_DLFCN_H */