mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
11 lines
139 B
C++
11 lines
139 B
C++
|
#include <stdio.h>
|
||
|
#include "shortfield.h"
|
||
|
|
||
|
void shortfield::ouch ()
|
||
|
{
|
||
|
printf ("list: %d %d 0x%x\n",
|
||
|
modCount,
|
||
|
size__,
|
||
|
data);
|
||
|
}
|