~ubuntu-branches/ubuntu/precise/eglibc/precise-201308281639

« back to all changes in this revision

Viewing changes to grp/putgrent.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2012-02-08 01:58:09 UTC
  • mfrom: (1.5.3) (288.1.12 precise)
  • Revision ID: package-import@ubuntu.com-20120208015809-ulscst7uteq3e22z
Tags: 2.15~pre6-0ubuntu10
Merge from Debian (r5151, 2.13-26).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 1991,92,96,98,99,2000,2005 Free Software Foundation, Inc.
 
1
/* Copyright (C) 1991,92,96,98,99,2000,2005,2011 Free Software Foundation, Inc.
2
2
   This file is part of the GNU C Library.
3
3
 
4
4
   The GNU C Library is free software; you can redistribute it and/or
20
20
#include <stdio.h>
21
21
#include <grp.h>
22
22
 
23
 
#ifdef USE_IN_LIBIO
24
 
# define flockfile(s) _IO_flockfile (s)
25
 
# define funlockfile(s) _IO_funlockfile (s)
26
 
#endif
 
23
#define flockfile(s) _IO_flockfile (s)
 
24
#define funlockfile(s) _IO_funlockfile (s)
27
25
 
28
26
#define _S(x)   x ? x : ""
29
27