aboutsummaryrefslogtreecommitdiff
path: root/lib/setup-vms.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/setup-vms.h')
-rw-r--r--lib/setup-vms.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/setup-vms.h b/lib/setup-vms.h
index 6c454aee6..482e69e46 100644
--- a/lib/setup-vms.h
+++ b/lib/setup-vms.h
@@ -73,7 +73,7 @@ char *decc$getenv(const char *__name);
# endif
#endif
- struct passwd * decc_getpwuid(uid_t uid);
+ struct passwd *decc_getpwuid(uid_t uid);
#ifdef __DECC
# if __INITIAL_POINTER_SIZE == 32
@@ -138,9 +138,9 @@ static char *vms_getenv(const char *envvar)
static struct passwd vms_passwd_cache;
-static struct passwd * vms_getpwuid(uid_t uid)
+static struct passwd *vms_getpwuid(uid_t uid)
{
- struct passwd * my_passwd;
+ struct passwd *my_passwd;
/* Hack needed to support 64 bit builds, decc_getpwnam is 32 bit only */
#ifdef __DECC