summaryrefslogtreecommitdiff
path: root/src/backend/merchant.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/merchant.c')
-rw-r--r--src/backend/merchant.c36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/backend/merchant.c b/src/backend/merchant.c
deleted file mode 100644
index b0ab811f..00000000
--- a/src/backend/merchant.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- This file is part of TALER
- (C) 2014 Christian Grothoff (and other contributing authors)
-
- TALER 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 3, or (at your option) any later version.
-
- TALER 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
- TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
-*/
-
-/**
- * @file merchant/merchant.c
- * @brief Common utility functions for merchant
- * @author Sree Harsha Totakura <sreeharsha@totakura.in>
- */
-
-#include "platform.h"
-#include <gnunet/gnunet_util_lib.h>
-#include "merchant.h"
-
-
-#define EXITIF(cond) \
- do { \
- if (cond) { GNUNET_break (0); goto EXITIF_exit; } \
- } while (0)
-
-
-
-
-/* end of merchant.c */