~vorlon/ubuntu/natty/eglibc/multiarch

« back to all changes in this revision

Viewing changes to crypt/crypt.h

  • Committer: Steve Langasek
  • Date: 2011-02-18 21:18:44 UTC
  • mfrom: (103.1.7 eglibc)
  • Revision ID: steve.langasek@linaro.org-20110218211844-lodmi8b1qhyq3f3x
Tags: 2.13~pre1-0ubuntu1+multiarch.1
merge from natty

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
/* Encrypt data in BLOCK in place if EDFLAG is zero; otherwise decrypt
40
40
   block in place.  */
41
 
extern void encrypt (char *__block, int __edflag) __THROW __nonnull ((1));
 
41
extern void encrypt (char *__libc_block, int __edflag) __THROW __nonnull ((1));
42
42
 
43
43
#ifdef __USE_GNU
44
44
/* Reentrant versions of the functions above.  The additional argument
65
65
                      struct crypt_data * __restrict __data)
66
66
     __THROW __nonnull ((1, 2));
67
67
 
68
 
extern void encrypt_r (char *__block, int __edflag,
 
68
extern void encrypt_r (char *__libc_block, int __edflag,
69
69
                       struct crypt_data * __restrict __data)
70
70
     __THROW __nonnull ((1, 3));
71
71
#endif