summaryrefslogtreecommitdiff
path: root/ace/OS_NS_pwd.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-03 23:23:22 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-11-03 23:23:22 +0000
commit88e92c489becdf6bf1613955d6d4afe2dea235ae (patch)
tree1c65178c73ddd1fb30e53ae3ea7ad5e159f665aa /ace/OS_NS_pwd.h
parentb74c3ce9b719f1b325370d067ad44fa2404a23c3 (diff)
downloadATCD-unlabeled-1.1.6.tar.gz
This commit was manufactured by cvs2svn to create branchunlabeled-1.1.6
'unlabeled-1.1.6'.
Diffstat (limited to 'ace/OS_NS_pwd.h')
-rw-r--r--ace/OS_NS_pwd.h76
1 files changed, 0 insertions, 76 deletions
diff --git a/ace/OS_NS_pwd.h b/ace/OS_NS_pwd.h
deleted file mode 100644
index 9c61269f00b..00000000000
--- a/ace/OS_NS_pwd.h
+++ /dev/null
@@ -1,76 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file OS_NS_pwd.h
- *
- * $Id$
- *
- * @author Douglas C. Schmidt <schmidt@cs.wustl.edu>
- * @author Jesper S. M|ller<stophph@diku.dk>
- * @author and a cast of thousands...
- *
- * Originally in OS.h.
- */
-//=============================================================================
-
-#ifndef ACE_OS_NS_PWD_H
-# define ACE_OS_NS_PWD_H
-
-# include /**/ "ace/pre.h"
-
-# include "ace/config-all.h"
-
-# if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-# endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/os_include/os_pwd.h"
-#include "ace/ACE_export.h"
-
-#if defined (ACE_EXPORT_MACRO)
-# undef ACE_EXPORT_MACRO
-#endif
-#define ACE_EXPORT_MACRO ACE_Export
-
-# if defined (ACE_HAS_BROKEN_R_ROUTINES)
-# undef getpwnam_r
-# endif /* ACE_HAS_BROKEN_R_ROUTINES */
-
-struct passwd;
-
-namespace ACE_OS {
-
-
- //@{ @name A set of wrappers for password routines.
-
- ACE_NAMESPACE_INLINE_FUNCTION
- void endpwent (void);
-
- ACE_NAMESPACE_INLINE_FUNCTION
- struct passwd *getpwent (void);
-
- ACE_NAMESPACE_INLINE_FUNCTION
- struct passwd *getpwnam (const char *user);
-
- ACE_NAMESPACE_INLINE_FUNCTION
- struct passwd *getpwnam_r (const char *name,
- struct passwd *pwent,
- char *buffer,
- int buflen);
- ACE_NAMESPACE_INLINE_FUNCTION
- void setpwent (void);
- //@}
-
-} /* namespace ACE_OS */
-
-# if defined (ACE_HAS_INLINED_OSCALLS)
-# if defined (ACE_INLINE)
-# undef ACE_INLINE
-# endif /* ACE_INLINE */
-# define ACE_INLINE inline
-# include "ace/OS_NS_pwd.inl"
-# endif /* ACE_HAS_INLINED_OSCALLS */
-
-# include /**/ "ace/post.h"
-#endif /* ACE_OS_NS_PWD_H */