From 6b1f3f01294989f9ca54ff1580db90430e9376dc Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Fri, 4 Dec 2009 15:06:26 +1100 Subject: [PATCH] Add a blank file for the SMB backend. --- smb.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 smb.c diff --git a/smb.c b/smb.c new file mode 100644 index 0000000..a8c3c72 --- /dev/null +++ b/smb.c @@ -0,0 +1,28 @@ +/* + Copyright (C) by Ronnie Sahlberg 2009 + + 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 3 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, see . +*/ + +#define _GNU_SOURCE +#include +#undef _GNU_SOURCE + +#include +#include +#include +#include "dbench.h" + +#define discard_const(ptr) ((void *)((intptr_t)(ptr))) + -- 2.34.1