This commit is contained in:
Dan Buch 2016-04-16 23:58:24 -04:00
parent eaf65f1d9d
commit 51bbb82cb6
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC
2 changed files with 21 additions and 1 deletions

View File

@ -3,4 +3,12 @@ FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -yq RUN apt-get update -yq
RUN apt-get install -yq build-essential git man curl file sudo vim-tiny RUN apt-get install -yq \
build-essential \
curl \
file \
gdb \
git \
man \
sudo \
vim-tiny

12
lcthw-remnants-2/ex31.c Normal file
View File

@ -0,0 +1,12 @@
#include <unistd.h>
int main(int argc, char *argv[])
{
int i = 0;
while(i < 100) {
usleep(3000);
}
return 0;
}