]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MINICERN/packlib/kernlib/kerngen/ccgen/dosgs/tmproi.c
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / ccgen / dosgs / tmproi.c
CommitLineData
fe4da5cc 1/*
2* $Id$
3*
4* $Log$
5* Revision 1.1.1.1 1996/02/15 17:49:32 mclareni
6* Kernlib
7*
8*/
9/*> ROUTINE TMPROI
10 CERN PROGLIB# TMPROI .VERSION KERNFOR 4.36 930602
11 ORIG. 30/05/91, JZ
12 Fortran interface routine to print a prompt string
13 CALL TMPRO (TEXT)
14*/
15#ifdef WIN32
16#include <io.h>
17#endif
18#include <stdio.h>
19#include "kerngen/fortchar.inc"
20#if defined(CERNLIB_QX_SC)
21void tmproi_(ftext, lgtext)
22#endif
23#if defined(CERNLIB_QXNO_SC)
24void tmproi(ftext, lgtext)
25#endif
26#if defined(CERNLIB_QXCAPT)
27void TMPROI(ftext, lgtext)
28#endif
29#if defined(CERNLIB_QMCRY)
30 _fcd ftext;
31#endif
32#if !defined(CERNLIB_QMCRY)
33 char *ftext;
34#endif
35 int *lgtext;
36{
37 write (1, ftext, *lgtext);
38 return;
39}
40/*> END <----------------------------------------------------------*/
41