seteuid.c
上传用户:zm130024
上传日期:2007-01-04
资源大小:432k
文件大小:0k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* $Id: seteuid.c,v 1.1 1999/09/29 10:18:03 karls Exp $ */
  2. #ifdef HAVE_CONFIG_H
  3. #include "autoconf.h"
  4. #endif  /* HAVE_CONFIG_H */
  5. #include "common.h"
  6. #if !HAVE_SETEUID
  7. int
  8. seteuid(uid_t euid)
  9. {
  10. return setreuid(-1, euid);
  11. }
  12. #else
  13. static void avoid_error __P((void));
  14. static void avoid_error()
  15. {
  16. avoid_error();
  17. }
  18. #endif /* !HAVE_ISSETUGID */