| 1 |
– |
/* Copyright (c) 1989 Regents of the University of California */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* genbranch.c - program to generate 3D Christmas tree branches. |
| 6 |
|
* |
| 9 |
|
|
| 10 |
|
#include <stdio.h> |
| 11 |
|
|
| 12 |
+ |
#include <stdlib.h> |
| 13 |
+ |
|
| 14 |
+ |
#include <math.h> |
| 15 |
+ |
|
| 16 |
|
#include "random.h" |
| 17 |
|
|
| 18 |
|
#define errf() (var*(0.5-frandom())) |
| 36 |
|
int argc; |
| 37 |
|
char *argv[]; |
| 38 |
|
{ |
| 38 |
– |
double atof(); |
| 39 |
|
int i, j; |
| 40 |
|
|
| 41 |
|
for (i = 1; i < argc && argv[i][0] == '-'; i++) |