- changed include paths
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "../types.h"
|
||||
#include <types.h>
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -25,8 +25,8 @@
|
||||
|
||||
#include "gmp_helper.h"
|
||||
|
||||
#include "allocator.h"
|
||||
#include "randomizer.h"
|
||||
#include <utils/allocator.h>
|
||||
#include <utils/randomizer.h>
|
||||
|
||||
/**
|
||||
* Number of times the probabilistic primality test is applied
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include <gmp.h>
|
||||
|
||||
#include "../types.h"
|
||||
#include <types.h>
|
||||
|
||||
/**
|
||||
* Class with helper functions to manipulate gmp values
|
||||
|
||||
@@ -20,11 +20,9 @@
|
||||
* for more details.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#include "host.h"
|
||||
|
||||
#include "allocator.h"
|
||||
#include <utils/allocator.h>
|
||||
|
||||
/**
|
||||
* @brief The logger object.
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
|
||||
#include "../types.h"
|
||||
#include <types.h>
|
||||
|
||||
/**
|
||||
* @brief The logger object
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
#include "linked_list.h"
|
||||
|
||||
#include "allocator.h"
|
||||
#include <utils/allocator.h>
|
||||
|
||||
|
||||
typedef struct linked_list_element_s linked_list_element_t;
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#ifndef LINKED_LIST_H_
|
||||
#define LINKED_LIST_H_
|
||||
|
||||
#include "../types.h"
|
||||
#include <types.h>
|
||||
|
||||
/**
|
||||
* @brief Iterator for a linked list
|
||||
|
||||
@@ -29,8 +29,8 @@
|
||||
|
||||
#include "logger.h"
|
||||
|
||||
#include "../daemon.h"
|
||||
#include "allocator.h"
|
||||
#include <daemon.h>
|
||||
#include <utils/allocator.h>
|
||||
|
||||
/**
|
||||
* Maximum length of al log entry (only used for logger_s.log)
|
||||
|
||||
@@ -24,7 +24,8 @@
|
||||
#define LOGGER_H_
|
||||
|
||||
#include <stdio.h>
|
||||
#include "../types.h"
|
||||
|
||||
#include <types.h>
|
||||
|
||||
/**
|
||||
* @brief Log Levels supported by the logger object
|
||||
|
||||
@@ -23,9 +23,9 @@
|
||||
|
||||
#include "logger_manager.h"
|
||||
|
||||
#include "allocator.h"
|
||||
#include "linked_list.h"
|
||||
#include "../definitions.h"
|
||||
#include <definitions.h>
|
||||
#include <utils/allocator.h>
|
||||
#include <utils/linked_list.h>
|
||||
|
||||
mapping_t logger_context_t_mappings[] = {
|
||||
{PARSER, "PARSER"},
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
#include "logger.h"
|
||||
#include <utils/logger.h>
|
||||
|
||||
/**
|
||||
* @brief Context of a specific logger
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "randomizer.h"
|
||||
|
||||
#include "allocator.h"
|
||||
#include <utils/allocator.h>
|
||||
|
||||
/**
|
||||
* Default random device used when no device is given.
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
#ifndef RANDOMIZER_H_
|
||||
#define RANDOMIZER_H_
|
||||
|
||||
#include "../types.h"
|
||||
#include <types.h>
|
||||
|
||||
/**
|
||||
* Object representing an randomizer
|
||||
|
||||
@@ -28,9 +28,9 @@
|
||||
|
||||
#include "tester.h"
|
||||
|
||||
#include "allocator.h"
|
||||
#include "linked_list.h"
|
||||
#include "../queues/job_queue.h"
|
||||
#include <utils/allocator.h>
|
||||
#include <utils/linked_list.h>
|
||||
#include <queues/job_queue.h>
|
||||
|
||||
/**
|
||||
* @brief Private Variables and Functions of tester class
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include "../types.h"
|
||||
#include <types.h>
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user