From: wolf Date: Fri, 27 Sep 2002 15:58:30 +0000 (+0000) Subject: Put some names into std:: X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53c379e1233ebd91dbad818a9c4188d5ebcb5fc2;p=dealii-svn.git Put some names into std:: git-svn-id: https://svn.dealii.org/trunk@6544 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 14d409d07a..cca11b9e62 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -241,7 +241,7 @@ struct SparseDirectMA27::DetachedModeData if ((ret<0) && (errno==EINTR)) goto try_write; - fflush (NULL); + std::fflush (NULL); }; template @@ -356,7 +356,7 @@ SparseDirectMA27::initialize (const SparsityPattern &sp) pipe(detached_mode_data->client_server_pipe); // fflush(NULL) is said to be a // good idea before fork() - fflush(NULL); + std::fflush(NULL); // now fork and create child // process @@ -388,7 +388,7 @@ SparseDirectMA27::initialize (const SparsityPattern &sp) // herewith: AssertThrow (false, ExcMessage ("execv returned, which it is not supposed to do!")); - exit(1); + std::exit(1); }; // parent process continues here. // close unneeded end of pipe