DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦22d39c3ca⟧ TextFile

    Length: 205 (0xcd)
    Types: TextFile
    Names: »testfun.c«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦46d41b2d0⟧ »./emacs-18.55.tar.Z« 
        └─⟦fa971747f⟧ 
            └─⟦this⟧ »dist-18.55/gdb/testfun.c« 

TextFile

main ()
{
  register double a = 1.5;
  foo (a);
}

foo (x)
{
  printf ("%f\n", x);
}

do_add (x, y)
{
  return x + y;
}

double
do_float_add (x, y, z)
     register double x, y, z;
{
  return x + y + z;
}