代码搜索结果
找到约 10,000 项符合
Control System 的代码
system.h
/* system-dependent definitions for fileutils, textutils, and sh-utils packages.
Copyright (C) 1989, 1991-2002 Free Software Foundation, Inc.
This program is free software; you can redistribute
system.bas
Attribute VB_Name = "system"
'THIS MODULE ISN'T USED IN THE PROGRAM!!!!!(If you want to make the program smaller or improve the program you can public the Subs)
'When you do it, don't forget to add
system.c
#include
#include
#include
#include
int
system(const char *cmdstring) /* version without signal handling */
{
pid_t pid;
int status;
if (cmdstring
system.c
#include
#include
#include
#include
#include
int
system(const char *cmdstring) /* with appropriate signal handling */
{
pid_t pid;
int
system.h
//
// $Source: /home/gambit/CVS/gambit/sources/base/system.h,v $
// $Date: 2002/08/26 05:50:01 $
// $Revision: 1.3 $
//
// DESCRIPTION:
// Implements operating system specific functions
//
// This fi
system.cc
//
// $Source: /home/gambit/CVS/gambit/sources/base/system.cc,v $
// $Date: 2002/08/27 17:11:26 $
// $Revision: 1.5 $
//
// DESCRIPTION:
// Implements operating system specific functions
//
// This fi
system.h
Linux/include/asm/system.h
system.c
#include
void main (void)
{
if (system("DIR"))
printf("Error invoking DIR\n");
}