Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/include/pwd_.h


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/include/pwd_.h

    r2725 r3232  
    3131 * so that function calls are directed to bb_internal_XXX replacements
    3232 */
    33 
     33#undef endpwent
    3434#define setpwent    bb_internal_setpwent
    3535#define endpwent    bb_internal_endpwent
     
    6464/* Write the given entry onto the given stream.  */
    6565extern int putpwent(const struct passwd *__restrict __p,
    66              FILE *__restrict __f);
     66        FILE *__restrict __f);
    6767#endif
    6868
     
    8282
    8383extern int getpwent_r(struct passwd *__restrict __resultbuf,
    84                char *__restrict __buffer, size_t __buflen,
    85                struct passwd **__restrict __result);
     84        char *__restrict __buffer, size_t __buflen,
     85        struct passwd **__restrict __result);
    8686
    8787extern int getpwuid_r(uid_t __uid,
    88                struct passwd *__restrict __resultbuf,
    89                char *__restrict __buffer, size_t __buflen,
    90                struct passwd **__restrict __result);
     88        struct passwd *__restrict __resultbuf,
     89        char *__restrict __buffer, size_t __buflen,
     90        struct passwd **__restrict __result);
    9191
    9292extern int getpwnam_r(const char *__restrict __name,
    93                struct passwd *__restrict __resultbuf,
    94                char *__restrict __buffer, size_t __buflen,
    95                struct passwd **__restrict __result);
     93        struct passwd *__restrict __resultbuf,
     94        char *__restrict __buffer, size_t __buflen,
     95        struct passwd **__restrict __result);
    9696
    9797/* Read an entry from STREAM.  This function is not standardized and
    9898   probably never will.  */
    9999extern int fgetpwent_r(FILE *__restrict __stream,
    100             struct passwd *__restrict __resultbuf,
    101             char *__restrict __buffer, size_t __buflen,
    102             struct passwd **__restrict __result);
     100        struct passwd *__restrict __resultbuf,
     101        char *__restrict __buffer, size_t __buflen,
     102        struct passwd **__restrict __result);
    103103
    104104POP_SAVED_FUNCTION_VISIBILITY
Note: See TracChangeset for help on using the changeset viewer.