X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2Fmacros.h;h=9784c7aa3c2b5fa91fb67ec4480a3e45d309cbef;hp=46862926eefd88e432b1c9ba39b74e4fd1cf71ec;hb=86e903a44e57cf2d3fe122693fae4319fc8ba89e;hpb=86de518c1856b983608c791e0bbbc265aaf8e9b4 diff --git a/sources/macros.h b/sources/macros.h index 4686292..9784c7a 100644 --- a/sources/macros.h +++ b/sources/macros.h @@ -1,3 +1,21 @@ +/* macros.h + * + * Copyright (C) 2000-2002 Simone Piccardi + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ /* * Endianess conversion for int and short types */ @@ -12,12 +30,17 @@ /* * debugging print definition */ +#ifdef IS_DAEMON +#define report(fmt, args...) UserNotify(fmt,##args) +#else #define report(fmt, args...) printf(fmt,##args) +#endif /* IS_DAEMON */ + #ifdef DEBUG /* done only on debugging */ #define debug report #else #define debug(fmt, arg...) -#endif +#endif /* DEBUG */ /*