]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Format
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 20 Jun 2023 10:52:41 +0000 (12:52 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 6 Jul 2023 13:46:42 +0000 (15:46 +0200)
ext/arc4random/arc4random.hh

index 72449fb248830baac7a47ad572f2bfcd595c73ad..a130d7f8a6c474cb2eadf7c491649ae74af89dd6 100644 (file)
@@ -2,8 +2,9 @@
 
 #include <inttypes.h>
 
-extern "C" {
-uint32_t arc4random(void);
-void arc4random_buf(void *buf, size_t nbytes);
-uint32_t arc4random_uniform(uint32_t upper_bound);
+extern "C"
+{
+  uint32_t arc4random(void);
+  void arc4random_buf(void *buf, size_t nbytes);
+  uint32_t arc4random_uniform(uint32_t upper_bound);
 }