2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

Reduce name space pollution in libsudo_util.so

This commit is contained in:
Todd C. Miller
2014-06-26 16:21:19 -06:00
parent 9b3c19cc36
commit d36846a699
8 changed files with 47 additions and 46 deletions

View File

@@ -163,13 +163,13 @@ __dso_public void initprogname(const char *);
__dso_public int sudo_setgroups(int ngids, const GETGROUPS_T *gids);
/* term.c */
__dso_public bool term_cbreak(int);
__dso_public bool term_copy(int, int);
__dso_public bool term_noecho(int);
__dso_public bool term_raw(int, int);
__dso_public bool term_restore(int, bool);
__dso_public bool sudo_term_cbreak(int);
__dso_public bool sudo_term_copy(int, int);
__dso_public bool sudo_term_noecho(int);
__dso_public bool sudo_term_raw(int, int);
__dso_public bool sudo_term_restore(int, bool);
/* ttysize.c */
__dso_public void get_ttysize(int *rowp, int *colp);
__dso_public void sudo_get_ttysize(int *rowp, int *colp);
#endif /* _SUDO_UTIL_H */