Remove unused function from unsupported/

This commit is contained in:
Hisham Muhammad 2018-02-18 21:18:53 -03:00
parent f914617508
commit eed18dd107
2 changed files with 0 additions and 7 deletions

View File

@ -68,8 +68,3 @@ void ProcessList_goThroughEntries(ProcessList* super) {
proc->minflt = 20;
proc->majflt = 20;
}
void UnsupportedProcessList_scan(ProcessList* this) {
(void) this;
// stub!
}

View File

@ -17,6 +17,4 @@ void ProcessList_delete(ProcessList* this);
void ProcessList_goThroughEntries(ProcessList* super);
void UnsupportedProcessList_scan(ProcessList* this);
#endif