~ubuntu-branches/ubuntu/wily/cifs-utils/wily-proposed

« back to all changes in this revision

Viewing changes to util.h

  • Committer: Package Import Robot
  • Author(s): Pierre-André MOREY
  • Date: 2015-08-19 15:52:18 UTC
  • mfrom: (7.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20150819155218-1oc1fevspaio3sjq
Tags: 2:6.4-1ubuntu1
* Merge from Debian unstable (LP: #1219752). Remaining changes:
  - debian/control: Demote winbind from Recommends to Suggests. This avoids
    winbind being pulled onto the CD images when it's not required.
  - debian/patches/stat_systemd-ask-password.patch: also check for
    /bin/systemd-ask-password before trying to use systemd's tools.
* Dropped undocumented quilt dependancies wrt old debian format transition
  in debian/control and debian/rules, as those are not necessary anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#ifndef _LIBUTIL_H
26
26
#define _LIBUTIL_H
27
27
 
28
 
size_t strlcpy(char *d, const char *s, size_t bufsize);
29
 
size_t strlcat(char *d, const char *s, size_t bufsize);
 
28
extern size_t strlcpy(char *d, const char *s, size_t bufsize);
 
29
extern size_t strlcat(char *d, const char *s, size_t bufsize);
30
30
 
31
 
char *getusername(uid_t uid);
 
31
extern char *getusername(uid_t uid);
32
32
#endif /* _LIBUTIL_H */
33
33