| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In addition to adding missing `static' keywords:
- bin/dd: Pull in `extern.h' to guarantee consistency with source file.
- libexec/rpc.rusersd: Move shared globals into an extern.h.
- libexec/talkd: Move `debug' and `hostname' into extern.h.
- usr.bin/cksum: Put counters in extern.h, as they are used by ckdist/mtree.
- usr.bin/m4: Move `end_result' into extern.h.
- usr.sbin/services_mkdb: Move shared globals into an extern.h.
Notes:
svn path=/head/; revision=241777
|
|
|
|
|
|
|
|
|
|
|
| |
This bring better compatibility with gnum4
Reviewed by: cognet
Approved by: cognet
Obtained from: OpenBSD, NetBSD
Notes:
svn path=/head/; revision=228063
|
|
|
|
|
|
|
| |
Change the parser; rename `exp' to `exponent' not to collide with exp(3).
Notes:
svn path=/head/; revision=226422
|
|
|
|
|
|
|
|
|
|
|
|
| |
is in accordance with the information provided at
ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
Also add $FreeBSD$ to a few files to keep svn happy.
Discussed with: imp, rwatson
Notes:
svn path=/head/; revision=216370
|
|
|
|
|
|
|
|
|
|
|
| |
precedence. Add short-circuit evaluation.
PR: bin/60914
Reviewed by: petef
Discussed with: jeff, petef
Notes:
svn path=/head/; revision=128789
|
|
|
|
|
|
|
| |
rather than int.
Notes:
svn path=/head/; revision=106210
|
|
|
|
| |
Notes:
svn path=/head/; revision=100014
|
|
|
|
|
|
|
| |
<type> <identifier>(<void-type>) in ANSI C.
Notes:
svn path=/head/; revision=99939
|
|
|
|
|
|
|
|
|
|
| |
to `op' as suggested by Bruce, as this is used to store the operator between
vl and vr.
Submitted by: bde
Notes:
svn path=/head/; revision=95998
|
|
|
|
|
|
|
|
|
| |
Add __FBSDID() properly.
Requested by: bde, mike
Notes:
svn path=/head/; revision=95982
|
|
|
|
| |
Notes:
svn path=/head/; revision=95888
|
|
|
|
| |
Notes:
svn path=/head/; revision=95887
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Cast sizeof() to (int), as it's being compared against an int, not a size_t.
If i is changed to a size_t, it means the logic must be slightly changed later
in the flow, where --i is checked to be >= 0. I am not sure I want to make a
logic change to account for clearing up a warning, when an aesthetic one will
keep from modifying the logic.
Other harmless casts, that I think I've made in the right directions.
Make gpbc() an inline function, rather than an obfuscated macro, make its
scratch space local, rather than global. The previous macro used a dirty
hack (logical AND in place of a conditional) which would lead GCC to throw
a fit (rightly so) as the logical check, as well as the incrementation of
a variable, were not used for anything.
const'ify a few places where gcc3 yells. xstrdup() some global consts in
places where we xstrdup() when not using consts, but tried to assign them
to non-consts before.
Don't use execv(2) if we don't have the kind of arguments it wants.
Reviewed by: asmodai obrien tjr
Submitted by: tjr (a gcc3 build log)
Notes:
svn path=/head/; revision=95095
|
|
|
|
|
|
|
|
|
|
| |
$FreeBSD$ identifiers, and fix initialisation to stderr to happen in a function
as stderr is not the same in CURRENT as in OpenBSD.
Reviewed by: obrien
Notes:
svn path=/head/; revision=95060
|
|
|
|
| |
Notes:
svn path=/head/; revision=92921
|
|
|
|
| |
Notes:
svn path=/head/; revision=8874
|
|
|
|
|
|
|
|
| |
2) add logical ops, fix ! precedence, implement unary +, fix exp
Obtained from: NetBSD
Notes:
svn path=/head/; revision=7896
|
|
Notes:
svn path=/cvs2svn/branches/CHRISTOS/; revision=1590
|