mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-30 09:36:15 +02:00
16 lines
157 B
C++
16 lines
157 B
C++
|
#ifndef __SHARED_H
|
||
|
#define __SHARED_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "util.hh"
|
||
|
|
||
|
|
||
|
void run(Strings args);
|
||
|
|
||
|
|
||
|
extern string programId;
|
||
|
|
||
|
|
||
|
#endif /* !__SHARED_H */
|