Remove conflicting static strlen from the process header.
Not necessary per se, but it'll help when we switch over to CPP.
This commit is contained in:
parent
29ab9a5860
commit
752f44852b
|
@ -14,13 +14,7 @@
|
||||||
#define MAX_PROCESSES 128
|
#define MAX_PROCESSES 128
|
||||||
#define PROCESS_STACK 65535
|
#define PROCESS_STACK 65535
|
||||||
|
|
||||||
static size_t strlen(const char* String) {
|
static size_t
|
||||||
size_t Len = 0;
|
|
||||||
while(String[Len] != '\0') {
|
|
||||||
Len++;
|
|
||||||
}
|
|
||||||
return Len;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief All the data a process needs.
|
* @brief All the data a process needs.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user