]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/xusleep.c
Source Format Enforcement (#763)
[thirdparty/squid.git] / lib / xusleep.c
index d383f57375639f9dda9ef6e4657e920d171ae9a9..d2c0b2ab106799f3aaaa3814010321001085791e 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * 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"
 
@@ -17,3 +25,4 @@ xusleep(unsigned int usec)
     sl.tv_usec = usec % 1000000;
     return select(0, NULL, NULL, NULL, &sl);
 }
+