mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:41:40 +03:00
checksrc: enhance the ASTERISKSPACE and update code accordingly
Fine: "struct hello *world" Not fine: "struct hello* world" (and variations) Closes #5386
This commit is contained in:
parent
f3f5d82e28
commit
66b0775763
23 changed files with 56 additions and 56 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue