stalloc.c
来自「操作系统源代码」· C语言 代码 · 共 22 行
C
22 行
/* * Copyright (C) 1989 by Kenneth Almquist. All rights reserved. * This file is part of ash, which is distributed under the terms specified * by the Ash General Public License. See the file named LICENSE. */#include "../shell.h"void error();pointer malloc();pointerstalloc(nbytes) { register pointer p; if ((p = malloc(nbytes)) == NULL) error("Out of space"); return p;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?