Ignore:
Timestamp:
Mar 26, 2018, 10:25:56 PM (7 years ago)
Author:
bird
Message:

kmkbuiltin: funnel output thru output.c (usually via err.c).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/output.h

    r3190 r3192  
    1414You should have received a copy of the GNU General Public License along with
    1515this program.  If not, see <http://www.gnu.org/licenses/>.  */
     16
     17#ifndef INCLUDED_MAKE_OUTPUT_H
     18#define INCLUDED_MAKE_OUTPUT_H
    1619
    1720#ifdef CONFIG_WITH_OUTPUT_IN_MEMORY
     
    8184void outputs (int is_err, const char *msg);
    8285#ifdef CONFIG_WITH_OUTPUT_IN_MEMORY
    83 void output_write_bin (struct output *out, int is_err, const char *src, size_t len);
    84 void output_write_text (struct output *out, int is_err, const char *src, size_t len);
     86ssize_t output_write_bin (struct output *out, int is_err, const char *src, size_t len);
     87ssize_t output_write_text (struct output *out, int is_err, const char *src, size_t len);
    8588#endif
    8689
     
    9093void output_dump (struct output *out);
    9194#endif
     95
     96#endif /* INLCUDED_MAKE_OUTPUT_H */
     97
Note: See TracChangeset for help on using the changeset viewer.