libnfs-private.h: add include guards
authorArne Redlich <arne.redlich@googlemail.com>
Thu, 13 Feb 2014 21:19:51 +0000 (22:19 +0100)
committerRonnie Sahlberg <ronniesahlberg@gmail.com>
Thu, 20 Feb 2014 02:38:59 +0000 (18:38 -0800)
Signed-off-by: Arne Redlich <arne.redlich@googlemail.com>
include/libnfs-private.h

index a2f3e1a2a09bc8cebba77132ba1f8bdc6850c1d7..2cc61c3b06a57857d9db6889e7987f40fed0c35b 100644 (file)
    You should have received a copy of the GNU Lesser General Public License
    along with this program; if not, see <http://www.gnu.org/licenses/>.
 */
+
+#ifndef _LIBNFS_PRIVATE_H_
+#define _LIBNFS_PRIVATE_H_
+
 #ifdef HAVE_CONFIG_H
 #include "config.h"  /* HAVE_SOCKADDR_STORAGE ? */
 #endif
@@ -94,7 +98,7 @@ struct rpc_context {
 
        /* fragment reassembly */
        struct rpc_fragment *fragments;
-       
+
        /* parameters passable via URL */
        int tcp_syncnt;
        int uid;
@@ -149,3 +153,5 @@ int rpc_add_fragment(struct rpc_context *rpc, char *data, uint64_t size);
 void rpc_free_all_fragments(struct rpc_context *rpc);
 
 const struct nfs_fh3 *nfs_get_rootfh(struct nfs_context *nfs);
+
+#endif /* !_LIBNFS_PRIVATE_H_ */