s3:printing: Add header inclusion guards in queue_process.h
authorSamuel Cabrero <scabrero@samba.org>
Tue, 1 Oct 2019 15:14:04 +0000 (17:14 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Fri, 18 Oct 2019 16:07:35 +0000 (16:07 +0000)
Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
source3/printing/queue_process.h

index b76936495274de74ce61fd40045427f34c62554b..a325f13d3290d7e1b9e635b47456741d0cc720c7 100644 (file)
@@ -20,6 +20,9 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
+#ifndef _SOURCE3_PRINTING_QUEUE_PROCESS_H_
+#define _SOURCE3_PRINTING_QUEUE_PROCESS_H_
+
 bool printing_subsystem_init(struct tevent_context *ev_ctx,
                             struct messaging_context *msg_ctx,
                             bool start_daemons,
@@ -30,3 +33,5 @@ void printing_subsystem_update(struct tevent_context *ev_ctx,
 pid_t start_background_queue(struct tevent_context *ev,
                             struct messaging_context *msg,
                             char *logfile);
+
+#endif /* _SOURCE3_PRINTING_QUEUE_PROCESS_H_ */