
/*
   string-stream support
*/

#include "io-defs.h"
#include <stdio.h>

struct streamoid * make_string_stream(buf, nbytes, mode)
char * buf;
int nbytes;
char * mode;
{
  fprintf(stderr, "Attempt to make a string stream!\n");
}

