1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

libDtTerm: add include <stdio.h> so FILE is properly defined.

TermPrim/TermPrimDebug.h references FILE without including the
required header file.  I am not sure why this hasn't shown up before.
This commit is contained in:
Jon Trulson 2014-03-09 00:21:40 -07:00
parent 4d48253234
commit b147e0ce12

View file

@ -31,6 +31,9 @@
*/
#ifndef _Dt_TermPrimDebug_h
#define _Dt_TermPrimDebug_h
#include <stdio.h>
#define isDebugFSet _DtTermPrimIsDebugFSet
#define isDebugSet(c) isDebugFSet((c), 0)
#define setDebugFlags _DtTermPrimSetDebugFlags