X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffreadseek.c;h=4145173e9e1fd3e30c54ecfa4c8104fb9663a3a3;hb=bed5facc8ba8813aec741ae883a5021f4bc6339e;hp=4fbad2d784b96bb1a9b328941dd87dbebbf97419;hpb=d4d84c1d916f5bff3bb72be92e9d1383a25077c1;p=gnulib.git diff --git a/lib/freadseek.c b/lib/freadseek.c index 4fbad2d78..4145173e9 100644 --- a/lib/freadseek.c +++ b/lib/freadseek.c @@ -1,5 +1,5 @@ /* Skipping input from a FILE stream. - Copyright (C) 2007-2011 Free Software Foundation, Inc. + Copyright (C) 2007-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -58,6 +58,8 @@ freadptrinc (FILE *fp, size_t increment) fp->_Next += increment; #elif defined __MINT__ /* Atari FreeMiNT */ fp->__bufp += increment; +#elif defined EPLAN9 /* Plan9 */ + fp->rp += increment; #elif defined SLOW_BUT_NO_HACKS /* users can define this */ #else #error "Please port gnulib freadseek.c to your platform! Look at the definition of getc, getc_unlocked on your system, then report this to bug-gnulib."