Ignore:
Timestamp:
Jul 13, 2020, 8:07:55 PM (4 years ago)
Author:
coas-nagasima
Message:

ntshellアプリはnewlibを使うよう変更し、syscallの実装部分と区別がつくよう更新。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/ntshell/src/shellif.h

    r441 r442  
    8888#define NCCS 32
    8989
     90#include "../musl-1.1.18/include/stdint.h"
     91#include "../musl-1.1.18/include/strings.h"
     92#define _STRINGS_H_ // newlibのstrings.hのincludeを抑止
     93#include "../musl-1.1.18/include/string.h"
     94#define _STRING_H_ // newlibのstring.hのincludeを抑止
    9095#include "../musl-1.1.18/include/bits/fcntl.h"
    9196#include "../musl-1.1.18/include/bits/termios.h"
     
    9398#include "../musl-1.1.18/include/sys/select.h"
    9499#include "../musl-1.1.18/include/time.h"
     100#define _TIME_H_ // newlibのtime.hのincludeを抑止
    95101#include "../musl-1.1.18/include/signal.h"
    96102#include "../musl-1.1.18/include/stdio.h"
     103#define _STDIO_H_ // newlibのstdio.hのincludeを抑止
    97104#include "../musl-1.1.18/include/sys/utsname.h"
    98105#include "../musl-1.1.18/include/dirent.h"
     
    104111#include <stddef.h>
    105112#include <stdarg.h>
     113#include <setjmp.h>
    106114
    107115#define DebugBreak()    asm("bkpt #0")
Note: See TracChangeset for help on using the changeset viewer.