mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 06:27:38 +03:00
Unexport shadow.SecsInDay Add -Wall -Werror -Wpedantic to CFLAGS in main.go. run() => run(void). Check for getline's buffer length. Check for NULL returned from malloc.
20 lines
445 B
Go
20 lines
445 B
Go
package main
|
|
|
|
/*
|
|
#cgo LDFLAGS: -lpam
|
|
#cgo CFLAGS: -DCGO -Wall -Wextra -Werror -Wno-unused-parameter -Wno-error=unused-parameter -Wpedantic -std=c99
|
|
extern int run();
|
|
*/
|
|
import "C"
|
|
import "os"
|
|
|
|
/*
|
|
Apparently, some people would not want to build it manually by calling GCC.
|
|
Here we do it for them. Not going to tell them that resulting file is 800KiB
|
|
bigger than one built using only C compiler.
|
|
*/
|
|
|
|
func main() {
|
|
i := int(C.run())
|
|
os.Exit(i)
|
|
}
|