~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to lib/freadseek.c

  • Committer: Package Import Robot
  • Author(s): Michael Stone
  • Date: 2013-07-20 15:45:55 UTC
  • mto: (8.3.5 sid)
  • mto: This revision was merged to the branch mainline in revision 52.
  • Revision ID: package-import@ubuntu.com-20130720154555-8pm8a2y6vyz9rdvh
Tags: upstream-8.21
ImportĀ upstreamĀ versionĀ 8.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Skipping input from a FILE stream.
2
 
   Copyright (C) 2007-2012 Free Software Foundation, Inc.
 
2
   Copyright (C) 2007-2013 Free Software Foundation, Inc.
3
3
 
4
4
   This program is free software: you can redistribute it and/or modify
5
5
   it under the terms of the GNU General Public License as published by
30
30
/* Increment the in-memory pointer.  INCREMENT must be at most the buffer size
31
31
   returned by freadptr().
32
32
   This is very cheap (no system calls).  */
33
 
static inline void
 
33
static void
34
34
freadptrinc (FILE *fp, size_t increment)
35
35
{
36
36
  /* Keep this code in sync with freadptr!  */