Actual source code: mprint.h

  1: /*$Id: mprint.h,v 1.2 2000/05/10 16:39:17 bsmith Exp $*/


 6:  #include petscsys.h
  7: #include <stdarg.h>
  8: #if defined(PETSC_HAVE_STDLIB_H)
  9: #include <stdlib.h>
 10: #endif
 11: #include "petscfix.h"


 14: /* ----------------------------------------------------------------------- */
 15: #define QUEUESTRINGSIZE 1024
 16: typedef struct _PrintfQueue *PrintfQueue;
 17: struct _PrintfQueue {
 18:   char        string[QUEUESTRINGSIZE];
 19:   PrintfQueue next;
 20: };
 21: extern PrintfQueue queue,queuebase;
 22: extern int         queuelength;
 23: extern FILE        *queuefile;

 25: #endif