Add wrapper for getting X509_digest from a cert
[folly.git] / folly / portability / Memory.h
index f46e9cea6f4d9a332ccb25c5c0004072526479e3..d932a5dc13422224ca1b38b98418b8bd2632e3db 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 #pragma once
 
-#include <cstdlib>
+#include <stdlib.h>
 
 namespace folly {
 namespace detail {
-
 void* aligned_malloc(size_t size, size_t align);
-
 void aligned_free(void* aligned_ptr);
-}
-}
+} // namespace detail
+} // namespace folly