changeset 18363:7eb1bb820c84 stable

* mkoctfile.in.cc: Use gnulib:: tag where appropriate.
author John W. Eaton <jwe@octave.org>
date Fri, 24 Jan 2014 04:10:53 -0500
parents f1ee47866e6b
children 2e62b1f01bfe
files src/mkoctfile.in.cc
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/mkoctfile.in.cc	Fri Jan 24 03:40:55 2014 -0500
+++ b/src/mkoctfile.in.cc	Fri Jan 24 04:10:53 2014 -0500
@@ -60,7 +60,7 @@
 
   while (true)
     {
-      c = static_cast<char> (fgetc (fp));
+      c = static_cast<char> (gnulib::fgetc (fp));
       if (c == '\n' || c == EOF)
         break;
       if (buf.size () <= idx)
@@ -565,7 +565,7 @@
         {
           string f = *it, dfile = basename (f, true) + ".d", line;
 
-          unlink (dfile.c_str ());
+          gnulib::unlink (dfile.c_str ());
           string cmd = vars["CC"] + " " + vars["DEPEND_FLAGS"] + " "
                        + vars["CPPFLAGS"] + " " + vars["ALL_CFLAGS"] + " "
                        + incflags  + " " + defs + " " + quote_path (f);
@@ -596,7 +596,7 @@
         {
           string f = *it, dfile = basename (f, true) + ".d", line;
 
-          unlink (dfile.c_str ());
+          gnulib::unlink (dfile.c_str ());
           string cmd = vars["CC"] + " " + vars["DEPEND_FLAGS"] + " "
                        + vars["CPPFLAGS"] + " " + vars["ALL_CXXFLAGS"] + " "
                        + incflags  + " " + defs + " " + quote_path (f);