This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 1/6] Reformat libio files


On 06/01/2013 08:11 AM, Ondrej Bilka wrote:
>  void
>  _IO_new_file_init (fp)
> -     struct _IO_FILE_plus *fp;
> +struct _IO_FILE_plus *fp;
>  {

The indentation was correct formatting for K&R C.
If you change anything at all, move to ISO C:

void
_IO_new_file_init (struct _IO_FILE_plus *fp)
{


r~


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]