Ignore:
Timestamp:
Nov 8, 2007, 10:35:23 PM (17 years ago)
Author:
rainer
Message:

Fix for ticket #81 (compile failure with --enable-static).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/sh_static.h

    r131 r145  
    1717
    1818struct passwd * sh_getpwnam(const char *name);
    19 int getpwnam_r(const char *name, struct passwd *pwbuf,
     19int sh_getpwnam_r(const char *name, struct passwd *pwbuf,
    2020               char *buf, size_t buflen, struct passwd **pwbufp);
    2121
    2222struct group * sh_getgrgid(gid_t gid);
    23 int getgrgid_r(gid_t gid, struct group *gbuf,
     23int sh_getgrgid_r(gid_t gid, struct group *gbuf,
    2424               char *buf, size_t buflen, struct group **gbufp);
    2525
    2626struct passwd * sh_getpwuid(uid_t uid);
    27 int getpwuid_r(uid_t uid, struct passwd *pwbuf,
     27int sh_getpwuid_r(uid_t uid, struct passwd *pwbuf,
    2828               char *buf, size_t buflen, struct passwd **pwbufp);
    2929
Note: See TracChangeset for help on using the changeset viewer.