Change #include "sodium.h" to <sodium.h>

This commit is contained in:
Andrew Bettison 2016-09-12 15:25:08 +09:30
parent 21679e3865
commit 2c0b8a5ef4
4 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef __SERVAL_DNA__CRYPTO_H
#define __SERVAL_DNA__CRYPTO_H
#include "sodium.h"
#include <sodium.h>
#define SIGNATURE_BYTES crypto_sign_BYTES
int crypto_verify_message(struct subscriber *subscriber, unsigned char *message, size_t *message_len);

View File

@ -23,7 +23,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include <sys/types.h>
#include <stdint.h>
#include <limits.h>
#include "sodium.h"
#include <sodium.h>
#include "str.h"
#ifndef __RHIZOME_TYPES_INLINE

2
str.c
View File

@ -21,7 +21,7 @@
#include "str.h"
#include "strbuf_helpers.h"
#include "constants.h"
#include "sodium.h"
#include <sodium.h>
#include <stdlib.h>
#include <stdio.h>

2
uuid.c
View File

@ -21,7 +21,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include "uuid.h"
#include "os.h"
#include "str.h"
#include "sodium.h"
#include <sodium.h>
#include <assert.h>
#ifdef HAVE_ARPA_INET_H