mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-09 22:22:37 +01:00
Tidied some of the CSS for the user and login pages. Tidied the flash display so that it dynamically shows either the notice, warning or message flash as appropriate. Note that the login tests are broken for now. git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@190 a4c988fc-2ded-0310-b66e-134b36920a42
11 lines
103 B
C
11 lines
103 B
C
#include <stdio.h>
|
|
|
|
extern void a();
|
|
extern void b();
|
|
|
|
int main ()
|
|
{
|
|
a();
|
|
b();
|
|
return 0;
|
|
}
|