diff options
author | Kai Blin <kai@samba.org> | 2008-03-29 00:31:37 +0100 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-04-02 23:05:56 +0200 |
commit | 294c55faf6880251ad67f5a5c7fbefb5e066cef6 (patch) | |
tree | ffb286f2a2699880667da22aeda5327dcd1bd42f | |
parent | 2d12b275f38fe2785c9ae389cc987269a232b5a8 (diff) | |
download | samba-294c55faf6880251ad67f5a5c7fbefb5e066cef6.tar.gz samba-294c55faf6880251ad67f5a5c7fbefb5e066cef6.tar.bz2 samba-294c55faf6880251ad67f5a5c7fbefb5e066cef6.zip |
IRPC: Add include guards for the header.
(This used to be commit 0e66e443ad42f9644aafc1858ac8d01c7c699337)
-rw-r--r-- | source4/lib/messaging/irpc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/lib/messaging/irpc.h b/source4/lib/messaging/irpc.h index d596c6721e..f44c0af3ec 100644 --- a/source4/lib/messaging/irpc.h +++ b/source4/lib/messaging/irpc.h @@ -19,6 +19,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef IRPC_H +#define IRPC_H + #include "librpc/gen_ndr/irpc.h" /* @@ -123,4 +126,5 @@ struct server_id *irpc_servers_byname(struct messaging_context *msg_ctx, TALLOC_ void irpc_remove_name(struct messaging_context *msg_ctx, const char *name); NTSTATUS irpc_send_reply(struct irpc_message *m, NTSTATUS status); +#endif |