Changeset 38d150e in mainline for uspace/srv/ns


Ignore:
Timestamp:
2017-12-02T09:44:11Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
40feeac
Parents:
b5abaf7
Message:

Prefer to get memory allocation functions through the standard stdlib header.

Location:
uspace/srv/ns
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/ns/clonable.c

    rb5abaf7 r38d150e  
    3838#include <assert.h>
    3939#include <stdio.h>
    40 #include <malloc.h>
     40#include <stdlib.h>
    4141#include <loader/loader.h>
    4242#include "clonable.h"
  • uspace/srv/ns/service.c

    rb5abaf7 r38d150e  
    3636#include <errno.h>
    3737#include <stdio.h>
    38 #include <malloc.h>
     38#include <stdlib.h>
    3939#include "service.h"
    4040#include "ns.h"
  • uspace/srv/ns/task.c

    rb5abaf7 r38d150e  
    3737#include <errno.h>
    3838#include <assert.h>
     39#include <macros.h>
    3940#include <stdio.h>
    40 #include <macros.h>
    41 #include <malloc.h>
     41#include <stdlib.h>
    4242#include <types/task.h>
    4343#include "task.h"
Note: See TracChangeset for help on using the changeset viewer.