代码搜索:Compatibility
找到约 6,848 项符合「Compatibility」的源代码
代码结果 6,848
www.eeworm.com/read/284120/8965463
makedev
#!/bin/bash
function makedev () {
for dev in 0 1 2 3; do
echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
rm -f /dev/$1$dev
mknod /dev/$1$dev c 81 $[ $2 + $dev ]
chmod 666 /dev/$1$dev
done
# s
www.eeworm.com/read/378510/9227857
news
This file lists notable changes in each release. For the full history of all
changes, see ChangeLog.
2008-07-19: v0.9.2 release
* Bug fixes
2008-06-28: v0.9.1 release
* Bug fixes
* Introduce cont
www.eeworm.com/read/377529/9271974
makedev
#!/bin/bash
function makedev () {
for dev in 0 1 2 3; do
echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
rm -f /dev/$1$dev
mknod /dev/$1$dev c 81 $[ $2 + $dev ]
chmod 666 /dev/$1$dev
d
www.eeworm.com/read/357527/10207114
climits
/*****************************************************************************/
/* limits.h v6.0.3 */
/* Copyright (c) 1996-2006 Texas Instrum
www.eeworm.com/read/275039/10838169
makedev
#!/bin/bash
function makedev () {
for dev in 0 1 2 3; do
echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
rm -f /dev/$1$dev
mknod /dev/$1$dev c 81 $[ $2 + $dev ]
chmod 666 /dev/$1$dev
d
www.eeworm.com/read/412264/7000034
h include.h
/*
This file is here for backward compatibility only.
Include proto.h to get all necessary header files.
*/
#include "proto.h"
www.eeworm.com/read/464279/7166928
sh ex-11-06_for.sh
#!/bin/sh
# Chapter 11 - Manipulating a set of files
# This example demonstrates how to use the for loop to copy files
#
# This example may fail on your system if you do not have some of
# the files o
www.eeworm.com/read/461590/7223932
log paper.log
This is TeX, Version 3.14159 (C version 6.1) (format=latex 96.11.4) 24 AUG 1998 13:52
**paper.tex
(paper.tex
LaTeX2e
Hyphenation patterns for english, german, loaded.
(/usr/local/lib/tex
www.eeworm.com/read/456209/7353810
svn-base std.sci.svn-base
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction
www.eeworm.com/read/456209/7353847
sci std.sci
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction