• R/O
  • HTTP
  • SSH
  • HTTPS

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

POSIX.1 National Language Support API for MinGW


File Info

Révision e8a4ca7c72694a37645e1013e561569c8dbb322b
Taille 950 octets
l'heure 2008-02-16 21:57:19
Auteur Keith Marshall
Message de Log

MinGW-catgets version 1.0.1 released.
Source update only: correct make install' defect.

Content

#ifndef DEBUG_H
/*
 * debug.h
 *
 * Written by Keith Marshall <keithmarshall@users.sourceforge.net>
 * Last modification: 11-May-2007
 *
 * THIS SOFTWARE IS NOT COPYRIGHTED
 *
 * This source code is offered for use in the public domain. You may
 * use, modify or distribute it freely.
 *
 * This code is distributed in the hope that it will be useful but
 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
 * DISCLAIMED. This includes but is not limited to warranties of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 */
#define DEBUG_H

#ifdef DEBUG
/*
 * We need some macros to facilitate printing debug messages...
 */
# define dinvoke(x)  x
# define dfprintf(x) fprintf x
# define dfputc(x)   fputc x
#else
/*
 * ...or, to do nothing, if not building for debugging
 */
# define dinvoke(x)
# define dfprintf(x)
# define dfputc(x)
#endif

#endif /* !defined( DEBUG_H ): $RCSfile$Revision: 1.1.1.1 $: end of file */