代码搜索:automatic
找到约 5,059 项符合「automatic」的源代码
代码结果 5,059
www.eeworm.com/read/233554/4666512
txt links9.txt
document.write("\
Authentication Options\
Automatic NTP Configuration Options\
www.eeworm.com/read/233554/4666519
txt links9.txt
document.write("\
Authentication Options\
Automatic NTP Configuration Options\
www.eeworm.com/read/233448/4678415
tree exit.tree
// { dg-do compile { xfail *-*-* } }
external_reference void exit (int code);
static int foo ();
foo
{
automatic int bar = +1;
bar = bar + +1;
exit (0); // Calling external references is current
www.eeworm.com/read/233448/4685221
c wtr-aggr-init-1.c
/* Test for -Wtraditional warnings on automatic aggregate initialization.
Note, gcc should omit these warnings in system header files.
By Kaveh R. Ghazi 8/22/2000. */
/
www.eeworm.com/read/205207/5025074
am makefile.am
## Process this file with automake to produce Makefile.in. -*-Makefile-*-
# $Id: Makefile.am,v 1.1 2004/04/04 12:40:28 csoutheren Exp $
# Disable automatic dependency tracking if using other too
www.eeworm.com/read/200278/5070844
c fork1.c
#include "apue.h"
int glob = 6; /* external variable in initialized data */
char buf[] = "a write to stdout\n";
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var
www.eeworm.com/read/200278/5070855
c vfork1.c
#include "apue.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var = 88;
printf("before vfork\n"); /*
www.eeworm.com/read/191609/5164369
am makefile.am
## Process this file with automake to produce Makefile.in. -*-Makefile-*-
# $Id: Makefile.am,v 1.1 2004/04/04 12:40:28 csoutheren Exp $
# Disable automatic dependency tracking if using other too
www.eeworm.com/read/190666/5175758
c local.c
// General testcase for local classes.
int x;
void f ()
{
static int s;
int x; // ERROR - referenced below
extern int q();
struct local {
int g() { return x; } // ERROR - automatic var