1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-03 06:03:17 +02:00

Use CPU_FEATURES_ prefix for namespace macros.

This commit is contained in:
Guillaume Chatelet
2018-02-12 16:15:15 +01:00
parent 8bace7000c
commit e419573d10
12 changed files with 26 additions and 26 deletions

View File

@ -21,7 +21,7 @@
#include <stdint.h>
#include "cpu_features_macros.h"
START_CPP_NAMESPACE
CPU_FEATURES_START_CPP_NAMESPACE
// Same as linux "open(filename, O_RDONLY)", retries automatically on EINTR.
int OpenFile(const char* filename);
@ -33,6 +33,6 @@ int ReadFile(int file_descriptor, void* buffer, size_t buffer_size);
// Same as linux "close(file_descriptor)".
void CloseFile(int file_descriptor);
END_CPP_NAMESPACE
CPU_FEATURES_END_CPP_NAMESPACE
#endif // CPU_FEATURES_INCLUDE_INTERNAL_FILESYSTEM_H_