/*************************************************************************\ * Copyright (c) 2002 The University of Chicago, as Operator of Argonne * National Laboratory. * Copyright (c) 2002 The Regents of the University of California, as * Operator of Los Alamos National Laboratory. * This file is distributed subject to a Software License Agreement found * in the file LICENSE that is included with this distribution. \*************************************************************************/ /* $Log: x11test.c,v $ Revision 1.4 2002/08/14 17:24:56 soliday Added Open License Revision 1.3 1998/08/25 15:05:40 borland New version with major changes to allow multiple scales on x and y axes. * Revision 1.2 1995/09/05 21:10:09 saunders * First test release of the SDDS1.5 package. * */ #include "mdb.h" main(int argc, char **argv) { FILE *fp; char s[100]; fp = fopen_e("x11test.out", "w", 0); while (fgets(s, 100, stdin)) fputs(s, fp); }