Changes in / [6f15121:e67991f]


Ignore:
Location:
libcfa/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.cfa

    r6f15121 re67991f  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Jul 15 18:11:26 2019
    13 // Update Count     : 349
     12// Last Modified On : Sun Jul 14 11:51:10 2019
     13// Update Count     : 347
    1414//
    1515
     
    165165
    166166static ofstream soutFile = { (FILE *)(&_IO_2_1_stdout_) };
    167 ofstream & sout = soutFile, & stdout = soutFile;
     167ofstream & sout = soutFile;
    168168static ofstream serrFile = { (FILE *)(&_IO_2_1_stderr_) };
    169 ofstream & serr = serrFile, & stderr = serrFile;
     169ofstream & serr = serrFile;
    170170
    171171static ofstream exitFile = { (FILE *)(&_IO_2_1_stdout_) };
     
    267267
    268268static ifstream sinFile = { (FILE *)(&_IO_2_1_stdin_) };
    269 ifstream & sin = sinFile, & stdin = sinFile;
     269ifstream & sin = sinFile;
    270270
    271271// Local Variables: //
  • libcfa/src/fstream.hfa

    r6f15121 re67991f  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Mon Jul 15 18:10:23 2019
    13 // Update Count     : 167
     12// Last Modified On : Fri Jul 12 12:03:54 2019
     13// Update Count     : 165
    1414//
    1515
     
    7373void ?{}( ofstream & os, const char * name );
    7474
    75 extern ofstream & sout, & stdout, & serr, & stderr;             // aliases
     75extern ofstream & sout, & serr;
    7676extern ofstream & exit, & abort;
    7777
     
    102102void ?{}( ifstream & is, const char * name );
    103103
    104 extern ifstream & sin, & stdin;                                                 // aliases
     104extern ifstream & sin;
    105105
    106106// Local Variables: //
Note: See TracChangeset for help on using the changeset viewer.