]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/xusleep.c
Source Format Enforcement (#763)
[thirdparty/squid.git] / lib / xusleep.c
index 8de597ab86534dfb0a3aa31a4f71c4a9a3375c20..d2c0b2ab106799f3aaaa3814010321001085791e 100644 (file)
@@ -1,5 +1,12 @@
-#include "config.h"
-#include "profiling.h"
+/*
+ * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
+
+#include "squid.h"
 #include "xusleep.h"
 
 #if HAVE_UNISTD_H
@@ -18,3 +25,4 @@ xusleep(unsigned int usec)
     sl.tv_usec = usec % 1000000;
     return select(0, NULL, NULL, NULL, &sl);
 }
+