Changeset 38d150e in mainline for uspace/srv/logger


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/logger
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/logger/ctl.c

    rb5abaf7 r38d150e  
    3535 */
    3636
    37 #include <malloc.h>
    3837#include <stdio.h>
     38#include <stdlib.h>
    3939#include <errno.h>
    4040#include <io/logctl.h>
  • uspace/srv/logger/logs.c

    rb5abaf7 r38d150e  
    3131 */
    3232#include <assert.h>
    33 #include <malloc.h>
     33#include <errno.h>
     34#include <stdio.h>
     35#include <stdlib.h>
    3436#include <str.h>
    35 #include <stdio.h>
    36 #include <errno.h>
    3737#include "logger.h"
    3838
  • uspace/srv/logger/main.c

    rb5abaf7 r38d150e  
    4343#include <async.h>
    4444#include <stdio.h>
     45#include <stdlib.h>
    4546#include <errno.h>
    4647#include <str_error.h>
    47 #include <malloc.h>
    4848#include "logger.h"
    4949
  • uspace/srv/logger/writer.c

    rb5abaf7 r38d150e  
    4343#include <ns.h>
    4444#include <async.h>
     45#include <errno.h>
    4546#include <stdio.h>
    46 #include <errno.h>
     47#include <stdlib.h>
    4748#include <str_error.h>
    48 #include <malloc.h>
    4949#include "logger.h"
    5050
Note: See TracChangeset for help on using the changeset viewer.