chk.rtc

来自「linux 下的源代码分析阅读器 red hat公司新版」· RTC 代码 · 共 27 行

RTC
27
字号
#!/bin/sh -## $Id: chk.rtc,v 12.0 2004/11/17 03:44:56 bostic Exp $## Build a program that calls the run-time API configuration functions.[ -f ../libdb.a ] || (cd .. && make libdb.a) || {	echo 'FAIL: unable to find or build libdb.a'	exit 1}if cc -g -Wall -I.. t.c ../libdb.a -o t; then	:else	echo "FAIL: unable to compile test program t.c"	exit 1fiif ./t; then	:else	echo "FAIL: test program failed"	exit 1fiexit 0

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?